[MYSQL PHP 함수] isset() empty() 함수
2014.12.05
작성일/수정일
2014-12-05 16:09:49 / 2014-12-05 16:09:49
isset(), empty() 두 함수 모두 값을 유무를 확인하는 함수
isset()함수는 변수에 값이 있고 없음을 boolean값으로 반환하여 값이 존재하면 null 값이 아니라면 true를 반환합니다.
empty() 함수는 존재하는 값이 없거나 변수 의 값이 0 또는 false, null 값일 경우에는 true를 반환합니다.
<?
$str;
$str2 = "";
if(isset($str))
{
echo "빈 문자열이 아님";
}
else
{
echo "빈 문자열";
}
echo "<br/>";
if(isset($str2))
{
echo "빈 문자열이 아님";
}
else
{
echo "빈 문자열";
}
?>
결과 :
$str 빈 문자열
$str2 빈 문자열이 아님
[출처1]http://blog.naver.com/writer0713/220192600715
================= check.php 소스 =================================
$type="";
echo "isset() : ".isset($_REQUEST["type"])."<br />";
echo "empty() : ".empty($_REQUEST["type"]);
exit;
======================================================
1. http://localhost/check.php? -> request 자체가 없을때
- 결과
isset() : --> request 자체가 없어서 안나옴.
empty() : 1 --> request 없는 건 1=true 로 나옴.
2. http://localhost/check.php?type= -> request 는 있는데 값이 없을때
- 결과
isset() : 1 --> request 는 있어서 1=true 가 나옴.
empty() : 1 --> request 가 있지만 값이 없어서 1=true 로 나옴.
3. http://localhost/check.php?type=dog -> request 에 값이 있을때
- 결과
isset() : 1 --> request 는 있어서 1=true 가 나옴.
empty() : --> request 가 있지만 값이 없어서 안나옴.
< 결론 >
$type="";
if(isset($_REQUEST["type"])) { $type=trim($_REQUEST["type"]); }
if(!empty($type)) {
echo "값이 제대로 있음.";
}
=====> 이렇게 하면 됨.
[출처 2] https://blog.naver.com/apchima/221424058080