반응형
http://php.net/manual/en/function.empty.php
empty에 해당 하는 요소들.
Return Values ¶
Returns FALSE
if var
exists and has a non-empty, non-zero value. Otherwise returns TRUE
.
The following values are considered to be empty:
- "" (an empty string)
- 0 (0 as an integer)
- 0.0 (0 as a float)
- "0" (0 as a string)
NULL
FALSE
- array() (an empty array)
example empty() / isset()
<?php $var = 0; // Evaluates to true because $var is empty if (empty($var)) { echo '$var is either 0, empty, or not set at all'; } // Evaluates as true because $var is set if (isset($var)) { echo '$var is set even though it is empty'; } ?> |
반응형
'WEB언어 > PHP' 카테고리의 다른 글
php 이미지 자르기(crop) 만들기 (0) | 2018.05.09 |
---|---|
[펌] PHP 7.0에서 새로 나온 NULL 병합 연산자 - ?? (0) | 2018.04.14 |
[PHP] goto_url 로 페이지 이동하기 (0) | 2018.03.27 |
phpDocumentor 소스코드 문서 생성기(?) (0) | 2018.03.10 |
PHP의 Composer 한글 메뉴얼 + PHP개발자 글 (0) | 2018.01.05 |
[PHP]문자열 필터링 함수 eregi 등의 취약점 (0) | 2017.12.19 |
gmail 계정으로 이메일 보내기 + AWS에서 PHP를 이용한 SMTP를 통해 이메일 전송 (0) | 2017.12.16 |
[PHP] 접속자 IP 알아내기 함수. (0) | 2017.12.12 |
도움이 되셨다면 하트모양의 "♡ 공감"을 눌러주시면 큰 격려가 됩니다.
(로그인하지 않으셔도 가능)
(로그인하지 않으셔도 가능)