Interface improved
This commit is contained in:
15
endless.php
Normal file
15
endless.php
Normal 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]);
|
||||
}
|
||||
|
Reference in New Issue
Block a user