본문 바로가기

분류 전체보기931

PHP The 30 Minute Regex Tutorial Learning .NET Regular Expressions with Expresso Did you ever wonder what Regular Expressions are all about and want to gain a basic understanding quickly? My goal is to get you up and running with a basic understanding of regular expressions within 30 minutes. The reality is that regular expressions aren't as complex as they look. The best way to learn is to start writing and experimenting. Afte.. 2008. 10. 19.
PHP 배열 지정한 위치부터 입력하기 $gametitle = array(1 => '국내야구','해외야구','국내축구','해외축구','국내농구','NBA'); echo $gametitle[1]; 결과: 국내야구 1 => : 배열 0부터가 아니라 1부터 기록 6번째 배열 값은 "NBA" 가 됨. 2008. 10. 19.
PHP 배열에 지정한 이름으로 값을 담아두기 $month = array("Jan"=>"01","Feb"=>"02","Mar"=>"03","Apr"=>"04","May"=>"05"); 지정한 이름으로된 배열에 값을 일치 시킴 2008. 10. 19.
php 함수요약 1. 날짜 및 시간 관련함수 *time() -용도: 현재 시각을 timestamp값으로 구한다. -방법: time() *date() -용도: 사용자가 지정한 형태로 시간을 표시. 특정시간의 날짜와 요일등을 배열로 리턴한다. -방법: date("표시할 시간의 포맷형태","특정한 timestamp값") *mktime() -용도: 지정된 날짜를 timestamp값으로 변환한다. -방법: mktime(시,분,초,월,일,년) *checkdate() -용도: 날짜와 시간이 올바른 범위 안에 있는지 검사한다. -방법: checkdate(월,일,년) *getdate() -용도: 특정timestamp값으로 시간,요일,날짜정보를 배열로 반환한다. -방법: getdate(timestamp값) 또는 getdate() *get.. 2008. 10. 19.