search

var_dump(0) //int(0)
var_dump('0') //string(1) "0"
var_dump('ssddsd') //string(7) "sasadad"
var_dump(0=='sdfsdf') // bool(true)
var_dump('0'=='sdfsf') //bool(false)

在上面这些比较中为什么var_dump(0=='sdfsdf') // bool(true)而var_dump('0'=='sdfsf') //bool(false)
我认为的是0是整形,和字符型'sdfsf'比较应该是false。。。。

为什么实际结果却是相反的,我哪里理解错了么???

回复内容:

var_dump(0) //int(0)
var_dump('0') //string(1) "0"
var_dump('ssddsd') //string(7) "sasadad"
var_dump(0=='sdfsdf') // bool(true)
var_dump('0'=='sdfsf') //bool(false)

在上面这些比较中为什么var_dump(0=='sdfsdf') // bool(true)而var_dump('0'=='sdfsf') //bool(false)
我认为的是0是整形,和字符型'sdfsf'比较应该是false。。。。

为什么实际结果却是相反的,我哪里理解错了么???

<code>var_dump(0=='sdfsdf')</code>

当处理这句时,不同类型比较'sdfsdf'会被强制转换成int型,也就是int 0,所以结果是true

<code>var_dump('0'=='sdfsf') </code>

当处理这句时,相同类型比较直接比较内容,内容不一样,所以结果是false

你可以试试var_dump((int)("sdfsf"));结果是int 0

https://segmentfault.com/q/1010000000095573/a-1020000000098176

至于后面那个为啥错误的… 这个还需要说明么… 判断相等首要的因素是内容要相等,只是 == 非严格模式会帮我们自动将两者的类型转换成一致的而已。字符串内容都不同你到底是为啥会觉得相等的…

你理解错了。
比较运算符直接的转换 是:整数和字符串比较,字符串转为整数,那么字符串sdfsdf就转为整数0了,所以第三条是true。
第四条是true因为他们都是字符串,所以就直接比较了,那么字符串0和sdfsf自然不等,为false

==比较只比较值,不同类型会转换为同一类型比较。

要比较类型用===,必须值和类型都一样才为true。

这些官方文档里都有写的,请仔细阅读文档。

var_dump(0=='sdfsdf'); 弱类型比较通常会先进行类型转换转为相同类型在进行值相等判断.
其中字符串和数值的比较规则是字符串转换成数字. 所以上面那个比较实际的进行可看作

var_dump(0 == (int)'sdfsdf');

var_dump('0'=='sdfsf');两个都是字符串就是比较值是否相等.

字符串和数字关键后会被转换成0,这样的现象在数据库中也会存在的

http://php.net/manual/zh/language.operators.comparison.php
如果比较一个数字和字符串或者比较涉及到数字内容的字符串,
则字符串会被转换为数值并且比较按照数值来进行.此规则也适用于switch语句.
当用===或!==进行比较时则不进行类型转换,因为此时类型和数值都要比对.

PHP中字符串跟数字比较时,字符串会被转化为数字后进行比较,转化过程类似intval():

<code>echo intval('5stars');  输出5
print_r('5stars'==5);   输出1
var_dump('5stars'==5);  输出bool(true)
var_dump('5stars'===5); 输出bool(false)
var_dump('0e1'=='0e2');  输出bool(true)
var_dump('0e1'==='0e2'); 输出bool(false)
</code>

PHP中比较字符串应该用恒等于===或者strcmp.

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace("&nbsp;","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.