email주소 유효성 체크 :
$email = $_POST['email'];
if (trim($email)=='') { echo "이메일을 입력해 주십시오."; } else if (!preg_match("/([0-9a-zA-Z_-]+)@([0-9a-zA-Z_-]+)\.([0-9a-zA-Z_-]+)/", $email)) { echo "올바른 이메일 형식이 아닙니다."; } else { echo "올바른 이메일입니다."; }
'PHP' 카테고리의 다른 글
php 5.4 split to explode (0) | 2016.01.27 |
---|---|
PHP 5.3이상에서 변경되는 함수들 (0) | 2015.07.24 |
php, 아파치 에러로그 Use of undefined constant ~~~ (0) | 2015.04.29 |
php, 아파치 로그 [error] [client xxx.xxx.xxx.xxx] PHP Notice: Use of undefined index 에러가 쌓일 때 (0) | 2015.04.29 |
PHP 확장자 구하기 (0) | 2015.04.18 |