PHP quot;If truequot; test on array always returns true?(PHP“如果为真对数组的测试总是返回 true?)
问题描述
我有一个验证函数,如果验证通过,我想返回 true,如果验证失败,我想返回一个错误数组.但是,当我检查函数是否返回 true 时,即使返回值是数组,它也会返回 true.为什么是这样?作为我的意思的另一个例子:
I have a validation function that I want to return true if the validation passes, or an array of errors if validation fails. However, when I check if the function returns true, it returns true even if the returned value is an array. Why is this? As a further example of what I mean:
$array = ['test' => 'test'];
if ($array == true)
{
echo 'true';
}
我也尝试了同样的字符串:
and I also tried the same with a string:
$string = 'string';
if ($string == true)
{
echo 'true';
}
两者都回显真实.
这是为什么?如果我们能做到这一点,那我们为什么需要 isset() 函数呢?
Why is this? And if we can do this then why do we need the isset() function?
推荐答案
这是手册中记录的预期行为 http://php.net/manual/en/types.comparisons.php
This is expected behavior as documented in the manual http://php.net/manual/en/types.comparisons.php
Expression gettype() empty() is_null() isset() boolean
-----------------------------------------------------------------------
$x = array(); array TRUE FALSE TRUE FALSE
$x = array('a', 'b'); array FALSE FALSE TRUE TRUE
$x = ""; string TRUE FALSE TRUE FALSE
$x = "php"; string FALSE FALSE TRUE TRUE
因此,空字符串或数组的计算结果为 false
,非空字符串或数组的计算结果为 true
.
So an empty string or array will evaluate to false
and non empty strings or arrays will evaluate to true
.
另一方面,isset()
将确定是否定义了一个变量,而不管它的实际值如何.唯一不同的值是 null
.如果使用 isset()
测试,值为 null
的变量将返回 false.
On the other hand isset()
will determine if a variable is defined regardless of it's actual value. The only value being somehow different is null
. A variable with value null
will return false if tested with isset()
.
这篇关于PHP“如果为真"对数组的测试总是返回 true?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP“如果为真"对数组的测试总是返回 true?
基础教程推荐
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01