file-exists检查php的auto_prepend_file

时间:2012-11-07 15:05:04

标签: php apache2 vhosts

我目前的情况是,在vhost.conf我有一个条目自动包含一个文件来开始分析:

php_value auto_prepend_file /home/xhprof/include/xhprof.php

这个东西在SVN中,可能会被没有在他们的系统上安装xhprof的人检出。结果是,找不到xhprof.php并且PHP抛出错误。

有人知道,如果有可能检查,这个文件是否在那里,在包括之前?

提前thx:)

1 个答案:

答案 0 :(得分:1)

这样做:

fileX.php:

if(is_file("/home/xhprof/include/xhprof.php")){ include '/home/xhprof/include/xhprof.php'; }

vhost.conf:

php_value auto_prepend_file path/to/fileX.php

有一个名为is_file()

的函数