1
我想從類中獲取所有非靜態類變量。我遇到的問題是在「非靜態」部分。以下內容:如何查找所有非靜態類屬性
foreach(array_keys(get_class_vars(get_called_class())) AS $key) {
echo $key;
}
如何找到$ key是靜態屬性還是非靜態屬性?我知道我可以嘗試這樣的:
@$this->$key
但是,一定有更好的方法來檢查這一點。
有人嗎?
http://php.net/manual/en/class.reflectionclass.php – user187291 2010-10-04 14:35:57