我一直要求創建一個類,做一些事情,但是並隨後返回一個對象具有隻讀屬性。現在我已經創建的類,我就擁有了一切工作的100%,我當他們說「有隻讀屬性返回一個對象」糊塗..類返回對象混亂
這是我的PHP文件的概要,其包含的類和一些額外的線稱之爲等:
class Book(){
protected $self = array();
function __construct{
//do processing and build the array
}
function getAttributes(){
return $this->self; //return the protected array (for reading)
}
}
$book = new Book();
print_r($book->getAttributes());
有人可以幫助我返回一個對象或東西嗎?
感謝
你真的應該避免調用的方法財產「自我」。這種不好的編碼習慣。 – 2012-07-27 16:04:57