0

以下是我用于通过外部站点发送 SMS 的 URL 示例:

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

但是,如果我将用户重定向到此 URL,他们将不会被重定向回我的网站。但是我有代码要执行/页面来显示发送消息。

如何加载 URL 以发送消息而不会失去对向用户显示的内容的控制?

4

1 回答 1

5

您将希望在服务器端执行此操作,例如使用cURL

    // create curl resource 
    $ch = curl_init(); 

    // set url 
    curl_setopt($ch, CURLOPT_URL, "http://bulksms.poweredsms.com/send.php?usr=rajdeeps&pwd=pass123&ph=xxxxxxxxxxx&sndr=textid&text=hi"); 

    //return the transfer as a string 
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 

    // $output contains the output string 
    $output = curl_exec($ch); 

    // close curl resource to free up system resources 
    curl_close($ch);

    // $output now contains the response from poweredsms.com
于 2012-04-12T17:11:52.757 回答