Heim >Backend-Entwicklung >PHP-Tutorial >PHP中 echo, print_r与var_dump的区别分析

PHP中 echo, print_r与var_dump的区别分析

WBOY
WBOYOriginal
2016-07-28 08:29:141026Durchsuche

这篇文章主要介绍了PHP中echo,print_r与var_dump区别分析,主要讲述了三者的类型本质及其操作数据类型的用法区别,非常具有实用价值,需要的朋友可以参考下

本文较为详细的分析了PHP中echo,print_r与var_dump区别。分享给大家供大家参考。具体分析如下:

三者都是具有输出功能的php语句,但print_r(expression),var_dump(expression)是函数,echo只是语言结构,不是函数,因此不能作为表达式的一部分。

对于操作php的8种数据类型来说:
① echo 用于输出数值变量或者是字符串。但使用echo来输出引用变量时,如数组,仅输出数组的名字;当输出一个对象时,服务器提示

Catchable fatal error: Object of class Person could not be converted
to string>

错误,错误显示echo只能用于输出字符串。
② print_r(expression)的作用是输出一个数组,实际上参数expression的类型可为数值变量和引用变量。
③ var_dump(expression)函数的输出结果,参数expression表示各种变量类型,作用是输出一个变量的详细信息。
希望本文所述对大家的PHP程序设计有所帮助

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

以上就介绍了 PHP中 echo, print_r与var_dump的区别分析,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn