Comparing the three alternatives below, how does auto_prepend_file
impact performance?
php_admin_value auto_prepend_file /path/to/file.php
php_admin_value auto_prepend_file /path/to/file.php
auto_prepend_file = "/path/to/file.php"
require_once "/path/to/file.php";
Are all generally equal in performance?
Are there best practices to consider?