如何調用屬於該類內同一類的函數?調用類自己的函數錯誤
我:
class BaseConfig {
public $page ;
public $htmlRoot = 'assets/html/';
public function getPageTitle(){
echo $page = $_GET['p'];
}
public function getContent(){
$file = getPageTitle().'.php';
return readfile($htmlRoot.$file);
}
}
我收到以下錯誤,當我打電話
<?PHP Config::getContent();?>
Fatal error: Call to undefined function getPageTitle() in C:\Xit\xampp\htdocs\IMS3\assets\Config.php on line 17
我的方式創造我自己的簡單的框架。
Thanks guys,$ this does not work,it just just I can not use out of object context。
'自我'工作非常感謝。
請您詳細說明Radu提到的安全漏洞嗎?
@ S3Mi正在讀取的文件只是html。在這個用例中,我所做的仍然很糟糕,或者可以嗎?