求PHP方法:输出变量名及变量类型
迷茫
迷茫 2017-04-11 09:46:50
0
2
659
<?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

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

reply all(2)
洪涛

自己写了一个:

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

左手右手慢动作

可以参考thinkphp的dump函数

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template