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.
如何获得所有元素var_dump?我有一个巨大的数组,但var_dump只打印第一个 x 元素,我需要所有这些元素来检查我的 sql 是否正确。
var_dump
尝试
echo '<pre>'; print_r($your_array); echo '</pre>';
这不会将数组元素的类型/大小显示为 var_dump,但会显示完整的数组。
使用print_r:
print_r
<pre> <?php print_r($var); ?> </pre>
这是查看阵列的好方法。该pre元素的格式很好且可读。
pre
试试print_r例如
print_r($myarray);