Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在这个 foreach 循环中:
<?php $x=array("one","two","three"); foreach ($x as $value) { echo $value . "<br>"; } ?>
您将如何在 foreach 循环之外单独访问字符串“two”?我不需要打印它,我只需要知道如何访问它。
通过索引访问它。循环不是必需的:
echo $x[0]; // one echo $x[1]; // two echo $x[2]; // three
你可以这样。
$x[1] // two
欲了解更多信息,请阅读示例 #1 一个简单的数组
您可以直接访问数组,而不受 foreach 循环的影响。
$x[1]