"PHP isset()"의 두 판 사이의 차이

 
(사용자 2명의 중간 판 17개는 보이지 않습니다)
3번째 줄: 3번째 줄:
* 값이 설정되어 있고 NULL이 아닌지 판단하는 PHP 함수
* 값이 설정되어 있고 NULL이 아닌지 판단하는 PHP 함수
* NULL이 아닌 값이 설정되어 있으면 true
* NULL이 아닌 값이 설정되어 있으면 true
* 선언된 적이 없으면 false


<source lang='php'>
<syntaxhighlight lang='php' run once>
$a = 'hello';
$a = 'hello';
var_dump( isset( $a ) );
var_dump( isset( $a ) );
# bool(true)
var_dump( isset( $b ) );
</syntaxhighlight>
 
{{소스헤더|unset()하면 false}}
<syntaxhighlight lang='php' run>
$a = 'hello';
unset( $a );
unset( $a );
var_dump( isset( $a ) );
var_dump( isset( $a ) ); # bool(false)
# bool(false)
</syntaxhighlight>
</source>
 
<source lang='php'>
{{소스헤더|여러 개 동시 확인 (하나라도 없으면 false)}}
<syntaxhighlight lang='php' run>
$b = 1;
$b = 1;
var_dump( isset( $b, $c ) );
var_dump( isset( $b, $c ) ); # bool(false)
# bool(false)
$c = 2;
$c = 2;
var_dump( isset( $b, $c ) );
var_dump( isset( $b, $c ) ); # bool(true)
# bool(true)
</syntaxhighlight>
</source>
 
{{소스헤더|배열 키 없으면 false}}
<syntaxhighlight lang='php' run>
$arr = ['a'=>'hello'];
var_dump( isset($arr['a']) ); # bool(true)
var_dump( isset($arr['b']) ); # bool(false)
</syntaxhighlight>


==같이 보기==
==같이 보기==
*[[PHP is_null()]]
{{z컬럼3|
*[[PHP empty()]]
* [[PHP is_null()]]
*[[PHP unset()]]
* [[PHP empty()]]
*[[PHP __isset()]]
* [[PHP unset()]]
* [[PHP defined()]]
* [[PHP 널 병합 연산자]](??)
* [[PHP array_key_exists()]]
* [[다언어 isset()]]
}}


==참고 자료==
==참고==
* http://php.net/manual/en/function.isset.php
* http://php.net/manual/en/function.isset.php


[[분류: PHP]]
[[분류: PHP]]

2023년 11월 27일 (월) 00:31 기준 최신판

1 개요[ | ]

PHP isset()
  • 값이 설정되어 있고 NULL이 아닌지 판단하는 PHP 함수
  • NULL이 아닌 값이 설정되어 있으면 true
  • 선언된 적이 없으면 false
$a = 'hello';
var_dump( isset( $a ) );
var_dump( isset( $b ) );
unset()하면 false
$a = 'hello';
unset( $a );
var_dump( isset( $a ) ); # bool(false)
여러 개 동시 확인 (하나라도 없으면 false)
$b = 1;
var_dump( isset( $b, $c ) ); # bool(false)
$c = 2;
var_dump( isset( $b, $c ) ); # bool(true)
배열 키 없으면 false
$arr = ['a'=>'hello'];
var_dump( isset($arr['a']) ); # bool(true)
var_dump( isset($arr['b']) ); # bool(false)

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}