http://bulksms.poweredsms.com/send.php?usr=rajdeeps&pwd=pass123&ph=xxxxxxxxxxx&sndr=textid&text=hi
我需要打开这个网址,但是我无法从这个链接重定向回我自己的网站,有没有办法执行这个链接并继续使用我想要的其他网页......??
http://bulksms.poweredsms.com/send.php?usr=rajdeeps&pwd=pass123&ph=xxxxxxxxxxx&sndr=textid&text=hi
我需要打开这个网址,但是我无法从这个链接重定向回我自己的网站,有没有办法执行这个链接并继续使用我想要的其他网页......??
您可以为此使用 CURL。
我不知道“执行”一个 url 是什么意思,如果你只是想调用它,你可以使用 AJAX,打开一个弹出窗口或者只是做这样的事情(非常丑陋的方法):
<img src="url....." style="display: none;">
编辑:
使用 AJAX 的一个示例如下:
您可以使用 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);
?>