php中 echo print() print_r() printf() var_dump 这几个输出函数有什么区别?
橱窗的光
橱窗的光 2016-12-17 11:44:35
0
2
1207
橱窗的光
橱窗的光

reply all(2)
数据分析师

What are the differences between these output functions echo print() print_r() printf() var_dump in php? -PHP Chinese website Q&A-What are the differences between these output functions in php echo print() print_r() printf() var_dump? -PHP Chinese website Q&A

Please watch and learn.

迷茫

echo不可以输出数组类型
print()只能输出一个字符串,不支持逗号分隔多个显示变量的语法。print能输出数组类型的数据
print_r()可以打印出复杂类型变量的值(如数组,对象)
printf() 函数输出格式化的字符串。
var_dump()函数输出变量的内容、类型或字符串的内容、类型、长度。常用来调试。

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template