<?php declare(strict_types=1); ini_set('display_errors', 'On'); error_reporting(-1); $profile = ['name' => '张三', 'gender' => '男', 'birth' => 2003]; var_dump($profile); // /inetpub/wwwroot/demo/test.php:8: // array (size=3) // 'name' => string '张三' (length=6) // 'gender' => string '男' (length=3) // 'birth' => int 2003 //========== 总结 ==========// // 1、开启Xdebug扩展后,使用var_dump()输出的内容和原来的不一样了。
Copyright © 2024 码农人生. All Rights Reserved