PHP - 获取数组元素

时间:2016-03-16 11:09:55

标签: php arrays

我有这部分代码:$ 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!!!

为什么?

0 个答案:

没有答案