PHP

php에서 자동으로 스타일 및 스크립트 파일 불러오기

php에서 자동으로 스타일 및 스크립트 파일 불러오기 스타일시트 파일 불러오기 function auto_enqueue_style($version='') { $basename = basename($_SERVER['REQUEST_URI'], '?' . $_SERVER['QUERY_STRING']); $split = explode('.', $basename); $filename = $split[0]; $extension = $split[count($split)-1]; $fileUrl …

php에서 자동으로 스타일 및 스크립트 파일 불러오기 Read More »

PHP에서 웹 크롤러 만들기

PHP에서 웹 크롤러 만들기 $ch=curl_init(); //initialize curl curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //Set curl to return the data instead of printing it to the browser. curl_setopt($ch, CURLOPT_URL, “http://google.com/”); $data …

PHP에서 웹 크롤러 만들기 Read More »

PHP에서 사용자 위치 구하는 방법

PHP에서 사용자 위치 구하는 방법 geocode: $geocode_stats = file_get_contents("http://maps.googleapis.com/maps/api/geocode/json?address=$country_name&sensor=false"); $output_deals = json_decode($geocode_stats); $latLng = $output_deals->results[0]->geometry->location; echo $lat = $latLng->lat; echo $lng = $latLng->lng; ipinfo: function ip_details($IPaddress) { $json = file_get_contents("http://ipinfo.io/{$IPaddress}"); …

PHP에서 사용자 위치 구하는 방법 Read More »

Scroll to Top