<?php
define('MY_CONSTANT', 1);
$aa = new AA();
$aa->test();
class AA
{
function test()
{
$a = '2333';
$bb = new BB();
echo_var_type($a, $bb, MY_CONSTANT, $_GET, $_SERVER['REMOTE_ADDR']);
}
}
class BB
{}
function echo_var_type(...$args) // php -v >= 5.6
{
// ???
// ???
}
想要的结果
$a string
$bb integer
MY_CONSTANT integer
$_GET array
$_SERVER['REMOTE_ADDR'] string
自己写了一个:
原理是用
debug_backtrace
拿到堆栈信息,然后去解析文件,没做太多错误处理,而且一行调用两次的情况也没处理,gettype
那里做些判断可以再获取类名,太懒不写了。测试结果见:3v4l
可以参考thinkphp的dump函数