Posted by Jψrn Dahl-Stamnes on 12/18/05 11:42
Do PHP support recursive calling, like this: function some_func ($some_arg) { $count = 0; // some code while (<some condition>) { if (<some condition>) { $count += some_func ($some_arg); } else { ++$count; } } return $count; } -- JΓΈrn Dahl-Stamnes http://www.dahl-stamnes.net/dahls/
[Reply to this message]
Copyright © 2005-2006 Powered by Custom PHP Programming