Use the object returned by simplexml_load_string ($ xml_str) to access a non-existent attribute. empty is true.

Source: Internet
Author: User
The {code...} game property does not exist, but var_dump has a result. why?
$ Xml_str = <
          
   CNY
           
   SUCCESS
           
   NATIVE
       EOT; $ obj = simplexml_load_string ($ xml_str); var_dump ($ obj-> game); if (empty ($ obj-> game) {echo 'Empty ';} else {echo "not empty ";}
  

The game attribute does not exist, but var_dump has a result. why?

Reply content:
$ Xml_str = <
          
   CNY
           
   SUCCESS
           
   NATIVE
       EOT; $ obj = simplexml_load_string ($ xml_str); var_dump ($ obj-> game); if (empty ($ obj-> game) {echo 'Empty ';} else {echo "not empty ";}
  

The game attribute does not exist, but var_dump has a result. why?

AlthoughgameThe property does not exist, but it is called when the property is obtained directly.SimpleXMLElementMagic method__get()This method returns an empty object andvar_dumpPrinted.
Howeverempty()It should be true. why is it false?
Becauseempty()It is not a direct Boolean judgment,empty($var) === isset($var) && $varSo we will callSimpleXMLElementMagic method__isset(), And__isset()The returned property does not exist.__get()It is automatically skipped.

BecausesimplexmlelementInternal ImplementationsetterAndgetter, Just like a magic method__set()And__get(),

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.