5.echo(),print(),print_r()的区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5.echo(),print(),print_r()的区别相关的知识,希望对你有一定的参考价值。

echo是php语句, print和print_r是函数,语句没有返回值,函数可以有返回值(即便没有用)  

    print()    只能打印出简单类型变量的值(如int,string)  

    print_r() 可以打印出复杂类型变量的值(如数组,对象)  

    echo()     输出一个或者多个字符串

以上是关于5.echo(),print(),print_r()的区别的主要内容,如果未能解决你的问题,请参考以下文章

关于php print_r

echo,print(),print_r()和var_dump()有什么区别?

jQuery:print_r() 显示等效? [复制]

echo() print() printf() print_r() 的区别

Perl 的等价于 PHP 的 print_r() 是啥?

print_r() 向 DateTime 对象添加属性 [重复]