12306 이번 글에서는 잔여 티켓 조회 및 가격 조회 기능 구현에 대해 소개하겠습니다.
<?php /** * 车票接口类 * * @author chepiao100 * */ class chepiao100 { /** * 接口地址 * @var string */ private $_apiurl = 'https://www.chepiao100.com/api/'; /** * 返回接口数据 * * @param string $method 接口方法 * @param array $param 请求参数 * @return mixed */ function getData($method, $param) { $post = http_build_query($param); $html = $this->fetch_html($this->_apiurl.$method, $post); $jsonArr = json_decode($html, TRUE); if ( $jsonArr['errMsg'] == 'Y') { return $jsonArr['data']; } else { return $jsonArr['errMsg']; } } /** * 请求HTTP * * @param string $url * @param string $post * @return mixed */ function fetch_html($url, $post) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_TIMEOUT, 60); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POST, true); //curl_setopt($ch, CURLOPT_PROXY, 'https://10.100.10.100:3128'); curl_setopt($ch, CURLOPT_POSTFIELDS, $post); $html = curl_exec($ch); curl_close($ch); return $html; } } /** End class of chepiao100 **/
이 글에서는 12306 잔여 티켓 조회 및 가격 조회 기능을 소개하고, 코드를 사용해 관련 기능을 구현한 내용은 PHP 중국어 홈페이지를 참고해주세요.
관련 권장 사항:
PHP를 사용하여 테이블 데이터를 빠르게 내보내는 방법에 대한 튜토리얼 소개
PHP 사전 정의 인터페이스인 ArrayAccess 사용 방법 설명
PHP 파일 이름 지정, 클래스 및 메서드 이름 지정 소개 변수명 지정 사양을 기다리는 중
위 내용은 PHP 코드는 12306개의 남은 티켓 쿼리 및 가격 쿼리 기능을 구현합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!