분류 전체보기 (286) 썸네일형 리스트형 [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'); [Linux] 리눅스 특정 포트 및 프로세스 죽이기 특정 PID 찾기 netstat -nap | grep 8080 프로세스 죽이기 kill -9 8080 [PHP] array_push() 함수 array_push() 배열에 값 추가하기 array_push(변수명, 배열에 들어갈 값, 배열에 들어갈 값); ex) [PHP] array_multisort() 함수 결과 : Array ( [0] => Array ( [a] => xcv [b] => 1 ) [1] => Array ( [a] => sdf [b] => 2 ) ) [PHP] $_POST 값 전체 출력 print_r($_POST); 이전 1 ··· 32 33 34 35 36 다음