0

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

我需要打开这个网址,但是我无法从这个链接重定向回我自己的网站,有没有办法执行这个链接并继续使用我想要的其他网页......??

4

3 回答 3

3

您可以为此使用 CURL。

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

于 2012-04-12T15:10:27.643 回答
2

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

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

编辑:

使用 AJAX 的一个示例如下:

从没有使用 jquery 的 php 文件中获取结果

于 2012-04-12T15:09:19.683 回答
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);
?>
于 2012-04-12T15:18:48.100 回答