您好我想在我的 php 文件中包含一个外部 .php 文件。
这个 .php 文件在我的页面中需要一些变量声明。
我尝试使用 file_get_contents 但它只是呼应里面的行。
试过:
function getter($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, 0);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
echo getter('www.somehting.com/phpfile.php');
-还是行不通
也试过:
$code = file_get_contents($url);
eval($code);
无论如何我可以在不更改 config.ini 的情况下执行此操作吗?
我可以在应该包含该文件的页面上访问 .htaccess。
该文件位于不同的服务器“机架空间”上。
谢谢你。