1
如何在類中從類中遍歷所有公共變量?遍歷所有公共變量並將NULL值轉換爲空字符串
如何獲取公共變量?
private function translate_null_values_to_strings(){
foreach($this->public_vars as $key => $value){
if(is_null($this->$key)) $this->$key = '';
}
}
http://stackoverflow.com/questions/3309320/php-get-classes - 公共變量 – vaso123
['ReflectionClass :: getProperties'](http://php.net/manual/en/reflectionclass.getproperties.php)'(ReflectionProperty :: IS_PUBLIC)' –
我會避免這樣做..有東西錯誤在您的應用程序中,如果對象有一些屬性設置爲您不想以後的值.. –