분류 전체보기931 PHP 자리수 맞추기 $code='11'; echo sprintf('%010u', $code); 자리수는 10개 빈 자리수는 0 2008. 10. 18. PHP 트리거 /************************************************************************** 파일명 : iframe-x_little_today.html 기 능 : 글 리스트 - 트리거 제작자 : DDOASS (http://ddiass.pe.kr ddiass@paran.com) 작성일 : 2005년 7월 25일 월요일 **************************************************************************/ //읽어올 url 작성 $temp_filename=realpath(__FILE__); $temp_filename=str_replace($DOCUMENT_ROOT,'',$temp_filename); $loadurl =.. 2008. 10. 18. PHP 마이크로타임 microtime function getmicrotime() { list($usec, $sec) = explode(" ", microtime()); return ((float)$usec + (float)$sec); } $time_start = getmicrotime(); 2008. 10. 18. PHP 다국어 후킹 switch($HTTP_ACCEPT_LANGUAGE) { case "ko" : header("Location: /kor/index.php");break; case "en" : header("Location: /enu/index.php");break; case "ja" : header("Location: /jpn/index.php");break; case "zh" : header("Location: /chs/index.php");break; case "zh-cn" : header("Location: /chs/index.php");break; Default : header("Location: /kor/index.php");break; } 2008. 10. 18. 이전 1 ··· 192 193 194 195 196 197 198 ··· 233 다음