3

サーバー全体に複数のファイルを含めようとしているので、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が受け入れられているか、他のものを上書きしているように見えます。

複数のファイルを含めるにはどうすればよいですか?

4

1 に答える 1

4

必要なファイルを必要とする別のローダーファイルを作成し、そのファイルを先頭に追加します。

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';
于 2012-08-21T20:38:02.090 に答える