打开一个外国网址&然后继续我自己的网页

时间:2012-04-12 15:07:24

标签: php javascript url curl

http://bulksms.poweredsms.com/send.php?usr=rajdeeps&pwd=pass123&ph=xxxxxxxxxxx&sndr=textid&text=hi

我需要打开这个网址,但我无法通过此链接重定向回自己的网站,有没有办法执行此链接& den继续我想要的其他网页...... ??

3 个答案:

答案 0 :(得分:3)

您可以使用CURL。

http://en.wikipedia.org/wiki/CURL

答案 1 :(得分:2)

我不知道“执行”一个网址是什么意思,如果你只是想调用它,你可以使用AJAX,打开一个弹出窗口或者只做这样的事情(非常难看的方法):

<img src="url....." style="display: none;">

编辑:

使用AJAX的一个例子是:

Get result from php file without usig jquery

答案 2 :(得分:0)

您可以使用cURL

尝试这种方式
<?php

$ch = curl_init("http://bulksms.poweredsms.com/send.php?usr=rajdeeps&pwd=pass123&ph=xxxxxxxxxxx&sndr=textid&text=hi");
curl_setopt($ch, CURLOPT_URL, $ch);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, false);
curl_exec($ch);
curl_close($ch);
?>