如何在不使用include或require的情况下在php中包含文件?

时间:2011-05-07 03:44:50

标签: php

如何在不包含或要求该文件的情况下调用不同文件中的函数?

3 个答案:

答案 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)

复制并粘贴它。但请注意许可证。