本文介绍了检查值是否设置为空的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
我需要检查 value 是否定义为任何内容,包括 null.isset 将空值视为未定义并返回 false.以以下为例:
I need to check if value is defined as anything, including null. isset treats null values as undefined and returns false. Take the following as an example:
$foo = null;
if(isset($foo)) // returns false
if(isset($bar)) // returns false
if(isset($foo) || is_null($foo)) // returns true
if(isset($bar) || is_null($bar)) // returns true, raises a notice
注意 $bar 是未定义的.
我需要找到满足以下条件的条件:
I need to find a condition that satisfies the following:
if(something($bar)) // returns false;
if(something($foo)) // returns true;
有什么想法吗?
推荐答案
IIRC,可以使用 get_defined_vars() 为此:
IIRC, you can use get_defined_vars() for this:
$foo = NULL;
$vars = get_defined_vars();
if (array_key_exists('bar', $vars)) {}; // Should evaluate to FALSE
if (array_key_exists('foo', $vars)) {}; // Should evaluate to TRUE
这篇关于检查值是否设置为空的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
The End



大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)