Questions tagged «square-bracket»

5
PHP array()和[]之间的区别
我正在编写一个PHP应用程序,我想确保它不会出现错误。 原始代码: <?php $data = array('name' => 'test', 'id' => 'theID'); echo form_input($data); ?> 以下内容可以正常运行吗?还是不建议出于某些原因? <?= form_input(['name' => 'test', 'id' => 'theID']); ?> 有什么区别吗? 我再次查看了有关数据array()以及[]PHP.net中带有方括号的短数组方法,但不确定。 而且,简短的php标签<?= ?>是否适合回显?有版本问题吗?(提供在php.ini中启用)



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.