Language

자바스크립트에서 타이머 점점 빠르게 구현하기

자바스크립트에서 타이머 점점 빠르게 구현하기 $element.find('a[data-action^="increment"], a[data-action^="decrement"]') .each(function() { var timer = 0; var cb = function(element, started) { var stopped = new Date().getTime(); var run = function() { $(element).trigger('click'); …

자바스크립트에서 타이머 점점 빠르게 구현하기 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