PHP使用empty检查函数返回结果时报Fatal error: Can't use function return value in write context的问题

在做PHP开发时,当你使用empty检查一个函数返回的结果时如果遇到下面的错误:Fatal error: Can't use function return value in write context

例如:

<?php
        echo empty(strlen('be-evil.org'));


到PHP手册里面查看,在empty函数描述的地方有以下文字:

Note: empty() only checks variables as anything else will result in a parse error. In other words, the following will not work: empty(trim($name)).

也就是说,empty()函数 只检测变量是否为空,检测任何非变量的东西都将导致解析错误!

因此,我们不能拿empty函数来直接检测函数返回的值,上面例子的解决方案如下:

<?php
$length = strlen('be-evil.org');
echo empty($length);
以上是在php中使用empty函数的注意事项,记录下来以便自己开发过程中可以快速知道错误的来源,欢迎指导!

你可能感兴趣的:(PHP,web开发)