我无法在我的 PHP 脚本中包含远程 PHP 文件。这是我所做的:
- 设置
allow_url_include
为on
php.ini。 将以下内容添加到我的索引顶部
$content = file_get_contents('http://domain.com/folder/file.php');
但仍然无法使用远程服务器中的 file.php 中的任何函数。错误:
PHP Fatal error: Call to undefined function makeConnection()
注意: makeConnection() 在 file.php 里面