我目前的情况是,我vhost.conf
有一个条目可以自动包含一个文件以开始分析:
php_value auto_prepend_file /home/xhprof/include/xhprof.php
这个东西在 SVN 中,可能会被系统上没有安装 xhprof 的人检查出来。结果是,xhprof.php
没有找到,PHP 抛出一个错误。
有谁知道,如果有可能检查,如果这个文件在那里,包括之前?
提前谢谢:)
像这样做:
文件X.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()