요즘 다양한 WEB 애플리케이션이 끝없이 등장하고 있는데, 프로그래머로서 어떻게 자신을 방어할 능력이 없을 수 있겠습니까? "PHP를 사용한 휴대폰 위치 쿼리 구현에 대한 비디오 튜토리얼"은 프레임워크 구조부터 프로세스 분석, 데이터 캐싱에 이르기까지 완전한 WEB 애플리케이션을 처음부터 개발하도록 안내할 것입니다. 이 과정을 공부하면 개발을 배우는 것 이상의 것을 얻을 수 있을 것이라고 믿습니다. .
강좌 재생 주소: http://www.php.cn/course/412.html
선생님의 강의 스타일:
선생님의 강의는 생생하고 재치 있고 재치있는 발언. 생생한 은유는 학생들에게 지혜의 문을 열어주는 마무리와 같습니다. 잘 배치된 유머는 마치 부드러운 와인 한 잔을 마시는 것과 같이 학생들에게 아는 듯한 미소를 가져다 주고, 사람들에게 철학자의 격언과 문화적 언급을 선사합니다. 내레이션에 때때로 삽입되어 사람들에게 생각과 경고를 제공합니다.
이 영상에서 더 어려운 부분은 API 요청 데이터입니다.
방법 1 (post 메소드를 사용하는 경우 1차원 배열에만 적용)
/** * curl发送htpp请求 * 可以发送https,http,get方式,post方式,post数据发送 */ public function dataRequest($url,$https=true,$method='get',$data=null) { //初始化curl $ch = curl_init($url); //字符串不直接输出,进行一个变量的存储 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //https请求 if ($https === true) { //确保https请求能够请求成功 curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false); curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,false); } //post请求 if ($method == 'post') { curl_setopt($ch,CURLOPT_POST,true); curl_setopt($ch,CURLOPT_POSTFIELDS,$data); } //发送请求 $str = curl_exec($ch); $aStatus = curl_getinfo($ch); //关闭连接 curl_close($ch); if(intval($aStatus["http_code"])==200){ return json_decode($str); }else{ return false; } }
방법 2 (post 메소드를 사용하는 경우) , 2차원 배열에 적합)
/** * @Purpose : curl发送htpp请求,可以发送https,http,get方式,post方式,post数据发送 * @Author : Chrdai * @Method Name : SendDataByCurl() * @parameter : string $url 传送的 url * boolean $https 是否使用 https * string $method 传递方法 * array $data 数据 * @return : 成功返回对方返回的结果,是非返回 false */ function SendDataByCurl($url,$https=true,$method='get',$data=null) { // 初始化curl $ch = curl_init($url); // 字符串不直接输出,进行一个变量的存储 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // https请求 if ($https === true) { // 确保https请求能够请求成功 curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false); curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,false); } // post请求 if ($method == 'post') { curl_setopt($ch,CURLOPT_POST,true); // 所需传的数组用http_bulid_query()函数处理一下,就可以传递二维数组了 curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); } // 发送请求 $str = curl_exec($ch); $aStatus = curl_getinfo($ch); // 关闭连接 curl_close($ch); if(intval($aStatus["http_code"])==200){ return json_decode($str); }else{ return false; } }
방법 3 (post 방식을 사용하는 경우 json 전달에 적합)
/** * @Purpose : curl发送htpp请求,可以发送https,http,get方式,post方式,post数据发送 * @Author : Chrdai * @Method Name : SendDataByCurl() * @parameter : string $url 传送的 url * boolean $https 是否使用 https * string $method 传递方法 * array $jsonStr 需要传递的 json 字符串 * @return : 成功返回对方返回的结果,是非返回 false */ function SendDataByCurl($url,$https=true,$method='get',$jsonStr=null) { // 初始化curl $ch = curl_init($url); // 字符串不直接输出,进行一个变量的存储 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // https请求 if ($https === true) { // 确保https请求能够请求成功 curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false); curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,false); } // post请求 if ($method == 'post') { curl_setopt($ch,CURLOPT_POST,true); curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonStr); // 只需要用个 http 头就能传递 json 啦! curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'Content-Type: application/json; charset=utf-8', 'Content-Length: ' . strlen($jsonStr) ) ); } // 发送请求 $str = curl_exec($ch); $aStatus = curl_getinfo($ch); // 关闭连接 curl_close($ch); if(intval($aStatus["http_code"])==200){ return json_decode($str); }else{ return false; } }
위 내용은 PHP에서 휴대폰 위치 쿼리를 구현하는 방법에 대한 비디오 자습서에 대한 권장 리소스의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!