Fatal error: require_once(): Failed opening required '/libs/Controller/indexController.class.php' (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\william123\MVC\function.php on line 3
2015-09-11
Warning: require_once(/libs/Controller/indexController.class.php): failed to open stream: No such file or directory in C:\xampp\htdocs\william123\MVC\function.php on line 3
2015-09-11
讲师回答 / PengCheng
strftime() 是根据区域设置格式化本地时间/日期date 也会用到时区设置出现这个问题是因为你当地的时区和默认的格林位置时间差距8小时。建议在php的最上面加上date_default_timezone_set("PRC");
2015-09-10
已采纳回答 / PengCheng
require_once 在一个脚本里是必须执行,即便在if else 中 也是这样。include_once 可以通过一些条件选择执行或不执行。在实际操作中,可以加条件选择加载或不加载这个库文件
2015-09-09
合法的控制器和方法列表中有用不到的参数.(冗余).
$controlerAllow = array('test');
$methodAllow = array('show');
这样就够了。毕竟,测试的url是http://localhost/mvc/index.php?controller=test&method=show
$controlerAllow = array('test');
$methodAllow = array('show');
这样就够了。毕竟,测试的url是http://localhost/mvc/index.php?controller=test&method=show
2015-09-08