PHP에서 경과 시간 구하기
PHP에서 경과 시간 구하기 사용법 255 시간 40 분 함수 function date2diff($datetime1 = '', $datetime2 = '', $warningHour = 24) { $time1 = date_create($datetime1); $time2 = date_create($datetime2); $diff = date_diff($time2, …
PHP에서 경과 시간 구하기 사용법 255 시간 40 분 함수 function date2diff($datetime1 = '', $datetime2 = '', $warningHour = 24) { $time1 = date_create($datetime1); $time2 = date_create($datetime2); $diff = date_diff($time2, …
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에서 불필요한 태그 제거하기 <form action="post.php" method="post"> <textarea name="comment"></textarea> <input type="submit" value="submit"> </form> strip_tags()를 사용하여 양식 데이터를 검사하면 HTML 및 PHP 태그가 모두 제거됩니다. $comment = strip_tags($_POST['comment']); 모든 해당 문자를 …
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에서 DOM Parser 사용하기 How to get HTML elements? // Create DOM from URL or file $html = file_get_html('http://www.google.com/'); // Find all images foreach($html->find('img') as $element) { echo $element->src . …
PHP에서 uuid v4 만들기 PHP < 7 function guidv4($data){ assert(strlen($data) == 16); $data[6] = chr(ord($data[6]) & 0x0f | 0x40); // set version to 0100 $data[8] = chr(ord($data[8]) & 0x3f | …
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에서 날짜 포맷 변경하기 사용법 1970년 01월 01일 (목요일) 00시 00분 00초 str2date2('1970-01-01 00:00:00', 'Y% m% d% (l) H% i% s%') 1970년 01월 01일 (1월) 00시 00분 00초 str2date2('1970-01-01 00:00:00', …
PHP에서 IP주소 차단하기 특정 IP 를 제외한 나머지 IP 차단 $ip = $_SERVER['REMOTE_ADDR']; $allow = '000.000.00.000'; if($ip != $allow) { exit; } 특정 IP 들을 제외한 나머지 IP 차단 $ip …
PHP에서 Array 데이터를 Json 타입으로 변환하기 $db->que = 'SELECT * FROM <TABLE_NAME>'; $db->query(); $results = []; while($row = $db->getRow()) { $results[$row['key']] = $row['value']; } // UTF-8 인코딩하기 $json = json_encode($results, …