In php, why is 0 = 'abc' true?

Source: Internet
Author: User
0 & #039; & #039; I understand it when it was founded. 0 & #039; abc & #039; I don't understand it when it was founded. Please kindly advise! 0 = ''is true. I understand,
0 = 'abc' is also set up and you will not understand it. Please advise!

Reply content:

0 = ''is true. I understand,
0 = 'abc' is also set up and you will not understand it. Please advise!

Aha, I read the relevant article two days ago. This is becauseYou are comparing a number with a string. PHP will convert the string to a number and then compare it..
PHP conversion rules are as follows:If the string starts with a number, the start number is used as the conversion result. If no value exists, 0 is output..
For example:123abcAfter conversion, it should be123, AndAbcIs0,0 = 0This is of course true!
For details, refer to the official manual: If you compare an integer and a string, the string will be converted to an integer.
PS: @ gaosboy'00' = '000'It is a comparison of two strings, which are also explained in the official manual.

$ A = 'abc'; $ B = (int) $ a; echo $ B; if (0 = $ B) {// Yes}

Run the command and you will know.

I think it's time to take a closer look at the php manual ~~~

If you do not test the var_dump (count ('abcde'), what is the printed result?

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.