我有这部分代码:$ output1是一个数组()
$nn = count($output1);
for ($ii=0; $ii<$nn; $ii++)
{
fwrite($fp,$ii."\r\n");
fwrite($fp,$nn."\r\n");
fwrite($fp, $output1[$ii]."\r\n");
echo "</br>";
}
在这种情况下,数组包含一个元素,但这不是标准的。
fwrite($fp,$ii."\r\n"); -> write in the file the value 0
fwrite($fp,$nn."\r\n"); -> write in the file the value 1
fwrite($fp, $output1[$ii]."\r\n"); -> Write Nothing!!!
为什么?