当我无法调用方法时,我遇到了问题。 structere就像:
/www
/classes
/class.php
/pages
/page.php
/index.php
所以我想从page.php文件中调用方法。
autoloader在index.php文件中配置。
这样做的正确方法是什么?我在index.php中创建了对象,并在page.php中调用了方法,但它抛出了Fatal error: Call to a member function indexAboutMe() on a non-object in...
我认为,问题是index.php文件没有将对象变量传递给page.php。
我使用来自另一个类的方法来包含页面(包括work-html,但不能调用方法,因为对象变量是空的。),这会导致此错误吗?
代码:
的index.php
<?php
$page = $_GET['page'];
if (empty($page)){$page = 'sakums';}
function __autoload($class_name) {
include './classes/' . $class_name . '.php';
}
$active = new activePage();
$db = new database();
?>
//then there is bunch of plain html code
<?php
$pageSwitcher = new pageSwitcher();
$pageSwitcher->pageLoader($page);
?> //this is page switching method, which includes file from pages folder
包含网页的课程:
<?php
/*
*class for page loading depending on active page.
*/
class pageSwitcher
{
public function pageLoader($page)
{
switch ($page)
{
case 'sakums':
include_once './pages/sakums.php';
break;
}
}
}?>
和sakums.php无法接收对象变量:
//html here
<?php $db->indexAboutMe(); ?>
//html
答案 0 :(得分:1)
您可以在函数中实例化$db
变量,包括页面或使用global $db;