PHP Empty Function Error Resolution

Source: Internet
Author: User
Tags strlen

This article mainly introduces the PHP empty function in the detection of a non variable case of the solution to the error, the need for friends can refer to the

PHP development, when you use empty to check the results of a function returned error: Fatal error:can ' t use function returns value in the write context for example, the following code: The following code: <?php   echo Empty (strlen (' Test ')); Go to the PHP manual to view, where the empty function describes the following text: The code is as follows: Note:empty () only checks variables as anything else would result in a parse Erro R. In other words, the following would not 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: The code is 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.