我有一个网站。让我们称之为http://www.domain.com
。现在,在这个 domain.com 上,我想显示http://www.adserversite.com/ads.php
. 如何使用 cURL 或其他方法做到这一点?我不想使用iframe
.
谢谢
你可以file_get_contents
像 Petr 所说的那样使用,但你需要allow_url_fopen
在你的主机中激活php.ini
,也许你的主机不允许你改变它。
如果您更喜欢使用 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);
echo file_get_contents('http://www.adserversite.com/ads.php');
谁需要 curl 来完成这个简单的任务?