Huhu,
.. naja, der Titel sagt ja schon alles - dann legt mal los
_____________________________________________
Jetzt ist es so weit,
Klos wird mich hauen...
und Zam mir danken...
Die ultimative If-Schleife!
.. naja, der Titel sagt ja schon alles - dann legt mal los
_____________________________________________
Jetzt ist es so weit,
Klos wird mich hauen...
und Zam mir danken...
Die ultimative If-Schleife!
Code:
<?php
##--> If-Loop
#-> © Niranda.net 2011
#->
##--> Description
#-> Input:
#-> $z Source value
#-> $t Target value
#-> $hop Hop/Step value
#->
#-> Output:
#-> result
function if_loop ($z, $t, $hop) {
if ($z != $t) {
$z = $z + $hop;
$z = if_loop($z, $t, $hop);
}
return $z;
}
##--> Example
$i = 0;
$step = 1;
$target = 10;
$result = if_loop($i, $target, $step);
echo $result; # 10
?>
Zuletzt bearbeitet von einem Moderator: