php replace parameter
$s = "{$i}<br>";
f开发者_开发知识库or ($i=0; $i<10; $i++)
{
f($s);
}
function f( $a )
{
echo $a;
}
How can I replace $i
with current value?
Place $s = "{$i}<br>";
inside the loop as:
for ($i=0; $i<10; $i++) {
$s = "{$i}<br>";
f($s);
}
精彩评论