코드 복사 코드는 다음과 같습니다.
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'];
curl_setopt($ch, CURLOPT_URL, $url); , true)
curl_setopt($ch, CURLOPT_POSTFIELDS, "mobileCode={$number}&userId=")
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); ;
curl_close($ch);
$data = simplexml_load_string($data);
if (strpos($data, 'http://')) {
echo '휴대폰번호 형식 오류!';
} else {
echo $data;
}
?>