我在一个名为 website 的类中有两个函数。这两个函数是 checkStatus 和 killPage。
函数 killPage 是关于使用漂亮的简单样式而不是完整的单词文本。函数 checkStatus 应该在代码中使用 killPage ,但它不会让我使用它。
继承人的代码:
class website
{
function killPage($content)
{
die("
<h1>" . Settings::WEBSITE_NAME ." encountered an error</h1>
" . $content . "
");
}
function checkStatus(){
if(Settings::STATUS == 'M')
{
$website->killPage('We are in maintence');
}
if(Settings::STATUS == 'O')
{
}
if(Settings::STATUS == 'C')
{
$website->killPage('We are closed');
}
}
}
$website = new Website;
我得到的错误:
未定义的变量:网站 && 调用非对象上的成员函数 killPage()