php include加载文件两种方式效率比较

2015-01-24信息快讯网
先来说说两种方式:
1)定义一个字符串变量,里面保存要加载的文件列表。然后foreach加载。
 
$a = '/a.class.php;/Util/b.class.php;/Util/c.class.php'; 
$b = '/d.php;/e.class.php;/f.class.php;/g.class.php'; 
// 加载基本系统文件 
$kernel_require_files = explode(';', $a);//SYS_REQUIRE_LIB_FILE_LIST); 
foreach($kernel_require_files as $f){ 
require_once(SYS_LIB_PATH.'/System'.$f); 
} 

// 加载基本系统文件 
$kernel_require_files = explode(';', $b);//SYS_BASE_FILE_LIST); 
foreach($kernel_require_files as $f){ 
require_once(KERNEL_PATH.$f); 
} 

2)把所有的要加载的文件都在一个include文件里面加载,当前页直接include这个include文件。
include.php文件内容
 
require_once('func.php'); 
require_once('LangManager.class.php'); 
require_once('_KernelAutoLoader.class.php'); 
require_once('ApplicationSettingManager.class.php'); 

require_once('lib/System/Activator.class.php'); 
require_once('lib/System/Util/CXML.class.php'); 
require_once('lib/System/Util/CWeb.class.php'); 

我个人认为第二种方法效率高些,因为没有foreach这些多余的运算~凡事要论证,不能凭空想象,所以,我验证了一下。以下是用两种方法随机10次加载所消耗的时间:
foreach
0.017754077911377
0.017686128616333
0.017347097396851
0.018272161483765
0.018272161483765
0.018401145935059
0.018187046051025
0.020787000656128
0.018001079559326
0.017963171005249


include_once('include.php');
0.025792121887207
0.024733066558838
0.025041103363037
0.024915933609009
0.024657011032104
0.024134159088135
0.025845050811768
0.024954080581665
0.024757146835327
0.02684497833252

另外,又尝试了一下,直接在当前页面加载所有文件
0.022285938262939
0.024394035339355
0.023194074630737
0.023229122161865
0.024644136428833
0.023538112640381
0.024240016937256
0.025094032287598
0.023231029510498
0.02339506149292
结果令我吃惊啊!竟然第一种貌似最慢的方法,耗时最少,而直接在当前页面加载多个文件耗时也不少啊~
原因?未知啊,希望明眼的给个答案,先不管那么多"X计划"的核心加载部分就用第一种方法啦~
PHP中全面阻止SQL注入式攻击分析小结
几种有用的变型 PHP中循环语句的用法介绍
通过PHP修改Linux或Unix口令的方法分享
php代码收集表单内容并写入文件的代码
php 无法加载mysql的module的时候的配置的解决方案引发的思考
php中可能用来加密字符串的函数[base64_encode、urlencode、sha1]
Trying to clone an uncloneable object of class Imagic的解决方法
Uncaught exception com_exception with message Failed to create COM object
PHP spl_autoload_register实现自动加载研究
php urlencode()与urldecode()函数字符编码原理详解
PHP性能优化工具篇Benchmark类调试执行时间
DISCUZ在win2003环境下 Unable to access ./include/common.inc.php in... 的问题终极解决方案
提示Trying to clone an uncloneable object of class Imagic的解决
php中实现简单的ACL 完结篇
PHP include_path设置技巧分享
php中通过虚代理实现延迟加载的实现代码
PHP的autoload自动加载机制使用说明
PHP原理之异常机制深入分析
将一维或多维的数组连接成一个字符串的php代码
php简单提示框alert封装函数
php递归实现无限分类生成下拉列表的函数
php用数组返回无限分类的列表数据的代码
php自定义函数之递归删除文件及目录
ionCube 一款类似zend的PHP加密/解密工具
由php的call_user_func传reference引发的思考
PHP中文URL编解码(urlencode()rawurlencode()
php自动加载的两种实现方法
PHP中json_encode、json_decode与serialize、unserialize的性能测试分析
IIS下PHP连接数据库提示mysql undefined function mysql_connect()
php allow_url_include的应用和解释
DedeCMS 核心类TypeLink.class.php摘要笔记
php上的memcache和memcached两个pecl库
php echo()和print()、require()和include()函数区别说明
PHP中include()与require()的区别说明
php面向对象全攻略 (十七) 自动加载类
©2014-2024 dbsqp.com