如何在不包含或要求该文件的情况下调用不同文件中的函数?
答案 0 :(得分:5)
你做不到。如果您不包含或要求它,PHP不知道有什么。您可以使用.htaccess或php.ini自动包含一个文件,该文件与包含require或include的文件相同。
例如在.htaccess
中php_value auto_prepend_file "/full/path/to/a/prepend-file.php"
在php.ini中
auto_prepend_file = "/full/path/to/a/prepend-file.php"
答案 1 :(得分:2)
将其读入字符串并评估它。
$code = file_get_contents("somefile.php");
eval($code);
答案 2 :(得分:0)
复制并粘贴它。但请注意许可证。