我想知道这是否可能,我找不到办法,所以我问。如何获取类实例中存在的变量的名称。
伪代码:
class test{
public $my_var_name = '';
function __construct(){
//the object says: Humm I am wondering what's the variable name I am stored in?
$this->my_var_name = get_varname_of_current_object();
}
}
$instance1 = new test();
$instance2 = new test();
$boeh = new test();
echo $instance1->my_var_name . ' ';
echo $instance2->my_var_name . ' ';
echo $boeh->my_var_name . ' ';
输出如下:
instance1 instance2 boeh
为什么!好吧,我只是想知道它的可能。