Blogger Information
Blog 30
fans 1
comment 0
visits 23343
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP isset empty函数相关面试题及解析
P粉896289085
Original
378 people have browsed it

这篇文章主要介绍了PHP isset empty函数相关面试题及解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

用isset()和empty()判断下面的变量。
$str = ‘’;
$int = 0 ;
$arr = array();
isset($str) 返回的是 true 还是 false
empty($int) 返回什么
empty($arr)返回什么
答案:
分别是 true true true
解释:
isset函数特性.
任何被赋值的变量,都会是isset状态. 当然NULL是特殊类型,$str = NULL; 使用isset($str) 则为false .
$str = NULL;
$str2 = &$str;
var_dump(isset($str2)); //此处来false
$str = ‘’;
var_dump(isset($str2)); //此处来true
另外,该函数只能判断变量 . 比如 isset(123) 则报错(Fatal error).
empty函数比较有意思 如下代码
var_dump(empty($null_var));
var_dump(empty(0));
var_dump(empty(‘’));
var_dump(empty(false));
var_dump(empty(null));
var_dump(empty(‘0’));
var_dump(empty(array()));
以上选部为true
特点,
未定义变量 0 ‘0’ ‘’ false null 空数组 都是true,而且,不必须是变量.
以上就是本文的全部内容,希望对大家的学习有所帮助。

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post