PHP는 휴대폰 번호의 위치를 획득합니다
User Leaps/httpClient
대신 file_get_contents를 직접 사용할 수 있습니다
이 API 인터페이스는 2011년 SAE 플랫폼이 출시된 이후 안정적으로 실행되고 있습니다. 지원이 추가되었습니다. 세그먼트 17. 모두 환영합니다. 컬렉션 노트 제한: 동시성 10
function getMobileInfo($mobile) { $http = new HttpClient (); $response = $http->get ( 'http://appyun.sinaapp.com/index.php?app=mobile&controller=index&action=api&outfmt=json&mobile='.$mobile ); if ($response->getHttpCode () == '200') { $result = json_decode($response->getBody(),true); return $result; } return false; }