我正在尝试包含多个文件服务器范围,所以在etc/php.ini
我有几行:
;Blowfish password
auto_prepend_file="/plugins/phpass-0.3/PasswordHash.php"
;WhoIs lookup
auto_prepend_file="/plugins/phpwhois-4.2.2/whois.main.php"
;IP database
;auto_prepend_file="/plugins/GeoIP/geoip.inc"
auto_prepend_file="/plugins/GeoIP/geoipcity.inc"
似乎只有最后一个auto_prepend_file
被接受,或者它正在覆盖其他人。{/ p>
如何包含多个文件?
答案 0 :(得分:3)
创建一个单独的加载程序文件,该文件需要您需要的文件,然后添加该文件。
auto_prepend_file="/path/to/loader.php"
在loader.php中:
require '/plugins/phpass-0.3/PasswordHash.php';
require '/plugins/phpwhois-4.2.2/whois.main.php';
require '/plugins/GeoIP/geoipcity.inc';