标签: php apache .htaccess require php-ini
比较下面的三个备选方案,auto_prepend_file如何影响效果?
auto_prepend_file
php_admin_value auto_prepend_file /path/to/file.php
auto_prepend_file = "/path/to/file.php"
require_once "/path/to/file.php";
性能总体上是否相同?
是否有最佳做法需要考虑?