我想將一個變量分配給PHP中的類,但是我沒有收到任何結果?在PHP中分配類變量的問題
任何人都可以提供任何幫助嗎?代碼如下所示。我試圖通過首先將其分配給類變量來回顯URL,如下所示。
class PageClass {
var $absolute_path = NULL;
function get_absolute_path(){
$url = $this->absolute_path;
echo $url;
}
}
$page = new PageClass();
$page->absolute_path = "http://localhost:8888/smile2/organic/";
$page->get_absolute_path(); //this should echo the URL as defined above - but does not