PHP:对象的Echo变量名?

时间:2011-05-27 17:56:48

标签: class variables printing echo

我想回显我正在调用的变量对象的名称,在本例中为controller_01。

我正在使用get_class,但它不打印变量名,只打印对象类型:(

<?php
class remoteControl{

    private $chip = "Intel64<br />";

    public function openCase(){
        echo "The controler has a " .get_class($this);
        return $this->chip;
    }


}

$control_01 = new remoteControl();


echo $control_01-> openCase();


?> 

1 个答案:

答案 0 :(得分:1)

你不能那样做。一个对象可以有多个引用,但该对象本身并不知道这些引用。 你唯一能做的就是枚举你能找到的每个变量,并检查它是否指向对象。但是这些引用也可能存在于数组中,或存在于其他对象的属性中。

如果您需要对象以这种方式查找其引用变量,那么您的设计确实存在缺陷。