轉儲變數
所述 var_dump
功能可以轉儲變數(型別和值)的內容進行除錯。
例:
$array = [3.7, "string", 10, ["hello" => "world"], false, new DateTime()];
var_dump($array);
輸出:
array(6) {
[0]=>
float(3.7)
[1]=>
string(6) "string"
[2]=>
int(10)
[3]=>
array(1) {
["hello"]=>
string(5) "world"
}
[4]=>
bool(false)
[5]=>
object(DateTime)#1 (3) {
["date"]=>
string(26) "2016-07-24 13:51:07.000000"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/Berlin"
}
}