复制代码 代码如下: <?php header(“Content-Type:text/html;charset=utf-8″); if (isset($_GET[‘number’])) { $url = ‘http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx/getMobileCodeInfo’; $number = $_GET[‘number’]; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POST, t
1