"함수 is null()"의 두 판 사이의 차이

(새 문서: category: Validation ==PHP== category: PHP <source lang='php'> is_null(NULL) // returns true </source> <source lang='php'> $foo = NULL; if(is_null($foo))echo "it's null"; //...)
 
4번째 줄: 4번째 줄:
[[category: PHP]]
[[category: PHP]]
<source lang='php'>
<source lang='php'>
is_null(NULL)
is_null(NULL);
// returns true
// true
</source>
</source>



2014년 5월 27일 (화) 17:50 판


1 PHP

is_null(NULL);
// true
$foo = NULL;
if(is_null($foo))echo "it's null";
// it's null

2 같이 보기

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