>백엔드 개발 >PHP 튜토리얼 >print_r为何多输出一个1?该怎么处理

print_r为何多输出一个1?该怎么处理

WBOY
WBOY원래의
2016-06-13 10:12:34997검색

print_r为何多输出一个1?
奇怪,第一次看到这样子。


PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->class test    {        public $test = array();                function test()        {            $this -> test[] = 'ok';        }        function _echo()        {            foreach ($this -> test as $val)                echo print_r($val);        }            }    $test = new test();    $test -> _echo();


打印出 ok1


------解决方案--------------------
bool print_r ( mixed expression [, bool return] )
是函数当然会有返回值

对于你的应用,应写作
 echo print_r($val, 1);
------解决方案--------------------
print_r
(PHP 4, PHP 5)
print_r -- 打印关于变量的易于理解的信息。 
描述
bool print_r ( mixed expression [, bool return] )
---------------------------------------------
既然print_r何必还要echo,如需要也得加上第二个参数

PHP code
echo print_r($var,true);<br><font color="#e78608">------解决方案--------------------</font><br>1 是print_r()函数的返回值<div class="clear">
                 
              
              
        
            </div>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.