PHP链接的时分 为什么要用 var_dump这个变量输出

WBOY
Release: 2016-06-13 12:56:48
Original
840 people have browsed it

PHP链接的时候 为什么要用 var_dump这个变量输出?
PHP链接的时候   为什么要用 var_dump这个变量输出?


------解决方案--------------------
因为var_dump能查看php所有的数据类型:
标量、资源、数组、对象。

mysql_query返回的就是一个资源类型,用echo、print、print_r之类无法查看。
------解决方案--------------------

echo ,print_r和var_dump区别:

echo 输出字符串和数值,不是函数,没有返回值
print_r 则是打印复合类型  如数组 对象
var_dump 显示关于一个或多个表达式的结构信息,包括表达式的类型与值。数组将递归展开值,通过缩进显示其结构。

这个我刚开始也挺迷惑,现在明白了。
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