通过PHP cURL获取文件内容

时间:2012-10-08 12:35:42

标签: php curl

我有一个网站。我们称之为http://www.domain.com。现在,在这个domain.com上,我想显示http://www.adserversite.com/ads.php的文件内容。我怎样才能用cURL或其他方法做到这一点?我不想使用iframe

由于

2 个答案:

答案 0 :(得分:46)

您可以使用file_get_contents作为Petr说,但您需要在php.ini中激活allow_url_fopen,并且您的托管可能不允许您更改此内容。

如果您更喜欢使用CURL而不是file_get_contents,请尝试以下代码:

<?php
$url = 'http://www.adserversite.com/ads.php';
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HEADER, false);
$data = curl_exec($curl);
curl_close($curl);

答案 1 :(得分:11)

echo file_get_contents('http://www.adserversite.com/ads.php');

这个简单的任务需要卷曲吗?