summaryrefslogblamecommitdiffstats
path: root/public/settergetter.php
blob: c9f001699c1b580db811822a1f512f23847b5732 (plain) (tree)
1
2
3
4
5
6





                                                                                            







                                                                    














                                                           
                                        







                                                                        
<?php
function print_a($v){echo"<pre style='background-color:#FFCC33'>";print_r($v);echo"</pre>";}
function setget($name){
	$withdash = $name;
	$withoutdash = substr($name,1);
	return 
'	public function get'.ucfirst($withoutdash).'()
	{
		return $this->'.$withdash.';
	}
	public function set'.ucfirst($withoutdash).'($'.$withdash.')
	{
		$this->'.$withdash.' = $'.$withdash.';
	}
';
}
if(isset($_POST['submit'])){
	$ar = explode("\n",trim($_POST['variables']));

	$output = "";
	foreach($ar as $item){
		$output .= setget("_".trim($item));
	}
	print_a($output);
	echo "<a href='".$_SERVER['PHP_SELF']."'>back</a>";
}

else{
?>
Jeweils ein Variablenname pro Zeile:<br>
<form method='post' action='<?php $_SERVER['PHP_SELF'];?>'>
<textarea name='variables'>
</textarea><br>
<input type='submit' name='submit' value='setter und getter generieren'>
</form>
<?php
}