PHP var_dump() 函数
PHP 教程
· 2019-01-31 22:26:40
var_dump() 函数用于输出变量的相关信息。
var_dump() 函数显示关于一个或多个表达式的结构信息,包括表达式的类型与值。数组将递归展开值,通过缩进显示其结构。
PHP 版本要求: PHP 4, PHP 5, PHP 7
语法
void var_dump ( mixed $expression [, mixed $... ] )
参数说明:
- $expression: 你要输出的变量。
返回值
没有返回值。
实例
实例
$a = array(1, 2, array("a", "b", "c"));
var_dump($a);
输出结果为:
array(3) { [0]=> int(1) [1]=> int(2) [2]=> array(3) { [0]=> string(1) "a" [1]=> string(1) "b" [2]=> string(1) "c" } }
实例
$b = 3.1;
$c = true;
var_dump($b, $c);
输出结果为:
float(3.1) bool(true)
点击查看所有 PHP 教程 文章: https://www.codercto.com/courses/l/5.html
Algorithms of the Intelligent Web
Haralambos Marmanis、Dmitry Babenko / Manning Publications / 2009-7-8 / GBP 28.99
Web 2.0 applications provide a rich user experience, but the parts you can't see are just as important-and impressive. They use powerful techniques to process information intelligently and offer featu......一起来看看 《Algorithms of the Intelligent Web》 这本书的介绍吧!