From e4c175527fb1a17aa88f07f02b7c905f592e06d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BA=A6=E5=BD=93=E8=8B=97=E5=84=BF?= Date: Wed, 17 Apr 2013 10:27:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E6=8E=89=20include=5Fpath=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=20VENDOR=5FPATH=20=E8=AE=BE=E7=BD=AE=EF=BC=8C?= =?UTF-8?q?=E5=A6=82=E6=9E=9C=E9=81=87=E5=88=B0=E4=B8=8D=E8=A7=84=E8=8C=83?= =?UTF-8?q?=E7=9A=84=E7=AC=AC=E4=B8=89=E6=96=B9=E7=B1=BB=E5=BA=93=EF=BC=8C?= =?UTF-8?q?=E5=8F=AF=E4=BB=A5=E7=94=B1=E7=94=A8=E6=88=B7=E8=87=AA=E8=A1=8C?= =?UTF-8?q?=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- base.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/base.php b/base.php index 0188889b..df4972e9 100644 --- a/base.php +++ b/base.php @@ -28,9 +28,6 @@ defined('VENDOR_PATH') or define('VENDOR_PATH', THINK_PATH.'Vendor/'); defined('EXT') or define('EXT', '.php'); defined('APP_DEBUG') or define('APP_DEBUG', false); // 是否调试模式 -// 为了方便导入第三方类库 设置Vendor目录到include_path -set_include_path(get_include_path() . PATH_SEPARATOR . VENDOR_PATH); - // 环境常量 define('MEMORY_LIMIT_ON', function_exists('memory_get_usage')); define('IS_CGI', strpos(PHP_SAPI, 'cgi') === 0 ? 1 : 0);