Heim > Fragen und Antworten > Hauptteil
<?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
PHP中文网2017-04-11 09:48:50
自己写了一个:
function var_types() {
$bt = debug_backtrace()[0];
$file = new \SPLFileObject($bt['file']);
$file->seek($bt['line'] - 1);
$line = $file->current();
$matchs = null;
preg_match('/var_types\((.*)\)/', $line, $matchs);
$param_names = array_map('trim', explode(",", $matchs[1]));
$args = func_get_args();
for ($i = 0; $i < count($args); $i++) {
echo $param_names[$i] . ' ' . gettype($args[$i]) . PHP_EOL;
}
}
原理是用debug_backtrace
拿到堆栈信息,然后去解析文件,没做太多错误处理,而且一行调用两次的情况也没处理,gettype
那里做些判断可以再获取类名,太懒不写了。
测试结果见:3v4l