Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- openfire
- quota
- rsync
- php
- 중독 게임
- 날짜계산
- mongodb
- strtotime
- 재귀쿼리
- 태권v
- node 이미지 저장
- simplexml_load_filesimplexml
- php-fpm
- ssmtp
- xcache
- 워드프레스한글팩
- no key alg
- 태권브이
- 훼인
- 뒤로 가기
- MySQL
- 리플리케이션 오류
- security.limit_extensions
- set foreign_key
- node.js
- 특정 패키지 업데이트 중지 / 해제
- 쁘띠프랑스
- 외래키
- 이미지주소추출
- 앞으로 가기
Archives
- Today
- Total
일상 기록 창고
in_array 사용하기 본문
<?
$namesArray = array("Joe", "Jane", "Bob", "Mary", "Paul", "Eddie",
"John");
$lookingFor = "Albert";
if (in_array($lookingFor,
$namesArray)) {
echo "You've found it!";
} else {
echo "Not found in
this array!";
}
?>
파일 업로드 시 확장자 검색에 유용하게 쓰일 수 있다..
'프로그래밍 > PHP' 카테고리의 다른 글
확장자 구하기 (0) | 2009.05.19 |
---|---|
sendmail + dovecot (imap, pop3) (0) | 2009.05.19 |
우편번호 가져오기 (0) | 2006.06.30 |
xml 생성 시 한글 깨짐 현상.. (0) | 2006.06.21 |
php로 xml 생성 뿌리기 (0) | 2006.06.20 |