Interface improved

This commit is contained in:
7u83
2017-01-13 21:49:09 +01:00
parent ad854804fc
commit 2818a32f06
8 changed files with 48 additions and 69 deletions

15
endless.php Normal file
View File

@ -0,0 +1,15 @@
<?php
function doNothing(&$param){
echo "I am really doing nothing\n";
}
$params = array(
"hello" => "world"
);
for ($i=0; $i<count($params); $i++){
doNothing($params[$i]);
}