自己寫了一個phpMVC框架,用框架寫了一個小的項目
原创php MVC框架 CGFramework,写的一个项目
百度云盘下载地址:http://pan.baidu.com/s/1o6r1Ney git:https://github.com/Naruone/CGFramework/ oschina git:https://git.oschina.net/naurone/CGFramework 作者:Corey QQ: 675608549
欢迎联系交流
- /**
- * 入口文件
- * @author CG;
- */
- error_reporting(E_ALL);
- header('Content-type: text/html; charset=utf-8');
- date_default_timezone_set('Asia/Shanghai');
- define('__ROOT__', dirname(__DIR__)); //定义网站根目录
- define('SITE_URL', dirname($_SERVER['SCRIPT_NAME'])); //定义访问地址
- chdir(dirname(__DIR__));
- require 'init_autoloader.php';
- /* 调试阶段请注释以下三行 */
- if(file_exists(__ROOT__ . '/cache/complie.php')){
- require __ROOT__ . '/cache/complie.php';
- }
- /* ------↑------*/
- try {
- vendorApplication::init(require_once './config/config.ini.php')->run();
- } catch (Exception $e) {
- echo "
程序异常信息:" . $e->getMessage() . ' ';
- echo '出错文件:', $e->getFile(), '
';
- echo '错误行数:', $e->getLine(), '
';
- echo '
出错代码: ' . $e->getTraceAsString();
- die;
- }
-
-
- /* 调试阶段请注释以下四行 */
- if(!file_exists(__ROOT__ . '/cache/complie.php')){
- /*生成合并库文件*/
- vendorcacheGenerateVendor::get_creater()->complie();
- }
- /* ------↑------*/
复制代码
|
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31