suchen

Heim  >  Fragen und Antworten  >  Hauptteil

求PHP方法:输出变量名及变量类型

<?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

迷茫迷茫2815 Tage vor664

Antworte allen(2)Ich werde antworten

  • PHP中文网

    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

    Antwort
    0
  • ringa_lee

    ringa_lee2017-04-11 09:48:50

    可以参考thinkphp的dump函数

    Antwort
    0
  • StornierenAntwort