is_numeric
(PHP 4, PHP 5)
is_numeric — 변수가 수나 수 문자열인지 확인합니다.
$num1 = 1234;
$num2 = "1234";
$num3 = "abc";
is_numeric($num1); // true
is_numeric($num2); // true
is_numeric($num3); // false
http://www.php.net/manual/kr/function.is-numeric.php
'Dev > PHP' 카테고리의 다른 글
File System (0) | 2013.05.22 |
---|---|
연락처 -으로 구분하는 함수 (0) | 2013.05.07 |
<? 으로 시작하면 안되는 이유 (0) | 2013.04.19 |
PHP 페이지 이동의 방법 (0) | 2013.04.19 |
PHP Warning: mysql_connect(): Premature end of data (0) | 2013.04.16 |