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