Home > Backend Development > PHP Tutorial > php5.1.6情况下,出现RECURSION。求破!解决思路

php5.1.6情况下,出现RECURSION。求破!解决思路

WBOY
Release: 2016-06-13 11:48:38
Original
1274 people have browsed it

php5.1.6情况下,出现RECURSION。求破!!!
$m = array('1');
$m['a'] = $m;
print_r($m);
die;
?>

这是简单的一个测试。输出的结果是
Array ( [0] => 1 [a] => Array *RECURSION* )

但是我想要的结果是:
Array ( [0] => 1 [a] => Array ( [0] => 1 ) )

应该改那个地方? 求大神解答
------解决方案--------------------
RECURSION 递归
当出现递归现象时 print_r 就是这样显示结果的
这是正确的,因为 print_r 只不过是调试用的,意思到了就行了
------解决方案--------------------
你的 php 版本太低,json_encode 出点错是正常的
------解决方案--------------------
php5.2.5 都不能处理这种情况
json_encode() [function.json-encode]: recursion detected 
------解决方案--------------------
我的PHP Version 5.3.27输出结果正是Array ( [0] => 1 [a] => Array ( [0] => 1 ) ) 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template