PHP empty function Error resolution method _php Tips

Source: Internet
Author: User
Tags parse error

When PHP is developed, when you use empty to check the results returned by a function, you will get an error: Fatal error:can ' t usage function return value in write context

For example, the following code:

Copy Code code as follows:

<?php
echo Empty (strlen (' Test '));

Go to the PHP manual to see where the empty function describes the following text:

Copy Code code as follows:
Note:empty () Only checks variables as anything else would result in a parse error. In other words, the following won't Work:empty (Trim ($name)).

Come to the conclusion: empty () Only detect variables, detection of any variables will cause parsing error!

Therefore, we can not take empty to directly detect the value returned by the function, the above example solution is as follows:

Copy Code code as follows:

<?php
$length = strlen (' test ');
echo Empty ($length);

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.