码迷,mamicode.com
首页 > Web开发 > 详细

php判断是否引入某文件

时间:2016-11-26 11:53:03      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:pre   foreach   rpo   demo   color   for   man   判断   解决   

Code:

 1 /* 判断是否引入了公共文件demo.php */
 2 $include_files = get_included_files();
 3 $include_files_exist = 0 ;
 4 foreach($include_files as $include_files_val){
 5     if(strpos($include_files_val,‘demo.php‘) !== false ){
 6         $include_files_exist = 1;
 7     }
 8 }
 9 if($include_files_exist != 1){
10     include_once(‘demo.php‘);
11 }

Command:

get_included_files();

strpos()

include_once();

其实,当时是因为重复引入同一文件引起报错,解决办法很简单,直接改为include_once() 或 require_once() 就OK。

php判断是否引入某文件

标签:pre   foreach   rpo   demo   color   for   man   判断   解决   

原文地址:http://www.cnblogs.com/wanghaokun/p/6103674.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!