首页  >  文章  >  后端开发  >  PHP 不等于

PHP 不等于

王林
王林原创
2024-08-29 12:35:34748浏览

PHP中的比较运算符之一是不等于,用符号!=或表示。每当我们想要比较两个给定值的数据类型时,我们都会在 PHP 中使用不等于运算符。如果给定的两个值的数据类型相同,即使两个变量中存储的值不同,PHP 中的不等于运算符也会返回 true;如果给定的数据类型相同,PHP 中的不等于运算符也会返回 false即使两个变量中存储的值相同,两个值也不相同。

广告 该类别中的热门课程 PHP 开发人员 - 专业化 | 8 门课程系列 | 3次模拟测试

开始您的免费软件开发课程

网络开发、编程语言、软件测试及其他

语法:

$variable1 != $variable2;
$variable1 <> $variable2;

其中variable1表示要与variable2表示的变量进行数据类型比较的变量的值。

PHP 中不等于运算符的工作

  • PHP中的比较运算符之一不等于,用符号!=或表示。
  • 每当我们想要比较两个给定值的数据类型,无论两个值是否相等时,我们都会在 PHP 中使用不等于运算符。
  • 如果给定两个值的数据类型相同,即使两个变量中存储的值不相同,不等于运算符也会返回 true。
  • 如果给定的两个值的数据类型不相同,即使两个变量中存储的值相同,PHP 中的不等于运算符也会返回 false。

PHP 不等于的示例

下面给出的是提到的示例:

示例#1

PHP 程序演示不等于运算符的工作原理,以比较给定两个值的数据类型并返回输出。

代码:

<?php
//an integer value is stored in a variable called variable1
$variable1 = 10;
echo "The value stored in the first variable is: $variable1<br/>";
//a string value is stored in a variable called variable2
$variable2 = "10";
echo "The value stored in the second variable is: $variable2<br/>";
//not equal operator is used to compare the data type of the given two variables and return the result
echo "The result returned after using not equal operator is: ";
var_dump($variable1 != $variable2);
?>

输出:

PHP 不等于

在上面的程序中,一个整数值存储在名为variable1的变量中。然后,一个字符串值存储在名为“variable2”的变量中。两个变量中存储的值是相同的。然后我们使用不等于运算符来比较两个变量的数据类型。不等于运算符返回 false,因为即使变量中存储的值相同,但两个变量的数据类型不同。

示例#2

PHP 程序演示不等于运算符的工作原理,以比较给定两个值的数据类型并返回输出。

代码:

<?php
//an integer value is stored in a variable called variable1
$variable1 = "Hello";
echo "The value stored in the first variable is: $variable1<br/>";
//a string value is stored in a variable called variable2
$variable2 = "Welcome";
echo "The value stored in the second variable is: $variable2<br/>";
//not equal operator is used to compare the data type of the given two variables and return the result
echo "The result returned after using not equal operator is: ";
var_dump($variable1 != $variable2);
?>

输出:

PHP 不等于

在上面的程序中,一个字符串值存储在名为variable1的变量中。然后,一个字符串值存储在另一个名为“variable2”的变量中。两个变量中存储的值不同。然后我们使用不等于运算符来比较两个变量的数据类型。不等于运算符返回 true,因为即使变量中存储的值不同,但两个变量的数据类型相同。

示例#3

PHP 程序演示不等于运算符的工作原理,以比较给定两个值的数据类型并返回输出。

代码:

<?php
//an integer value is stored in a variable called variable1
$variable1 = 2.9999;
echo "The value stored in the first variable is: $variable1<br/>";
//a string value is stored in a variable called variable2
$variable2 = 10.55555;
echo "The value stored in the second variable is: $variable2<br/>";
//not equal operator is used to compare the data type of the given two variables and return the result
echo "The result returned after using not equal operator is: ";
var_dump($variable1 != $variable2);
?>

输出:

PHP 不等于

在上面的程序中,一个字符串值存储在名为variable1的变量中。然后,一个字符串值存储在另一个名为“variable2”的变量中。两个变量中存储的值不同。然后我们使用不等于运算符来比较两个变量的数据类型。不等于运算符返回 true,因为即使变量中存储的值不同,但两个变量的数据类型相同。

示例#4

PHP 程序演示不等于运算符的工作原理,以比较给定两个值的数据类型并返回输出。

代码:

<?php
//an integer value is stored in a variable called variable1
$variable1 = "ffffff";
echo "The value stored in the first variable is: $variable1<br/>";
//a string value is stored in a variable called variable2
$variable2 = ffffff;
echo "The value stored in the second variable is: $variable2<br/>";
//not equal operator is used to compare the data type of the given two variables and return the result
echo "The result returned after using not equal operator is: ";
var_dump($variable1 != $variable2);
?>

输出:

PHP 不等于

在上面的程序中,一个整数值存储在名为variable1的变量中。然后,一个字符串值存储在名为“variable2”的变量中。两个变量中存储的值是相同的。然后我们使用不等于运算符来比较两个变量的数据类型。不等于运算符返回 false,因为即使变量中存储的值相同,但两个变量的数据类型不同。

以上是PHP 不等于的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
上一篇:PHP repository下一篇:PHP new line