我的课:
class mvc {
public function home () {
return 'index';
}
}
目的:
include "./sys/controller/".$Current_page_Controller_name.".php";
// making object of the controller class.
$controller = new $Current_page_Controller_name;
// Cheks if model is called, m stands for "model"
if (isset($_GET['m'])) {
}
$method_name = $mvc->$Current_page_Controller_name.'()';
// Cheks if default model exists, if not gives an error.
if (method_exists($controller, $method_name)) {
echo "+";
} else {
echo "-";
//die("Lappas sledzis saplisis, gaidiet drizuma... (2)");
}
我不断收到此错误
Notice: Undefined property: mvc::$home in /home/unusuallv/domains/.../public_html/sys/config.php on line 51
问题就在 $method_name = $mvc->$Current_page_Controller_name.'()'; 我知道,但我想不通:// tnx 很多!