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.
_pre()codginiter(CI)中方法的用途是什么:
_pre()
<?php $x = array('hello', 'ram', 'shyam'); _pre($x); die; ?>
这是在标签中输出数组的简写<pre>,尽管它可能是用户贡献而不是核心框架的一部分。
<pre>
这里的功能基本上是:
function _pre($arr) { echo '<pre>' . print_r($arr, true) . '</pre>'; }
现在它将使用此格式输出您的数组...
Array ( [0] => hello [1] => ram [2] => shyam )
...而不是这种格式: