코딩 (73) 썸네일형 리스트형 파비콘 생성기 - ico파일 만들기 https://www.favicon-generator.org/ Favicon & App Icon Generator Upload an image (PNG to ICO, JPG to ICO, GIF to ICO) and convert it to a Windows favicon (.ico) and App Icons. Learn more about favicons. www.favicon-generator.org 위 사이트 링크에 가서 변환하면 된다. [PHP]핸드폰번호 정규식 [PHP]number_format() 천단위 콤마 [PHP]IP로 국가 및 도시 알아내기 $ip = $_SERVER['REMOTE_ADDR']; // 아이피 주소받음 $details = json_decode(file_get_contents("http://ipinfo.io/"));// 받음받음 echo $details->country; // 나라 echo $details->city; // 도시 [PHP]json 문자열 한글처리 json_encode($age_total, JSON_UNESCAPED_UNICODE) [PHP]사용자 브라우저 정보 $userAgent = $_SERVER["HTTP_USER_AGENT"]; if(preg_match('/MSIE/i',$userAgent) && !preg_match('/Opera/i',$u_agent)){ $browser = 'Internet Explorer'; } else if(preg_match('/Firefox/i',$userAgent)){ $browser = 'Mozilla Firefox'; } else if (preg_match('/Chrome/i',$userAgent)){ $browser = 'Google Chrome'; } else if(preg_match('/Safari/i',$userAgent)){ $browser = 'Apple Safari'; } elseif(preg_match('/.. [PHP]메모리 제한 늘리기 메모리 제한 늘리기 ini_set('memory_limit','512M'); 메모리 무제한으로 늘리기 ini_set('memory_limit','-1'); [PHP]현재페이지만 에러 확인 error_reporting(E_ALL); ini_set('display_errors', '1'); 이전 1 ··· 5 6 7 8 9 10 다음