PHP中的比较运算符之一是不等于,用符号!=或表示。每当我们想要比较两个给定值的数据类型时,我们都会在 PHP 中使用不等于运算符。如果给定的两个值的数据类型相同,即使两个变量中存储的值不同,PHP 中的不等于运算符也会返回 true;如果给定的数据类型相同,PHP 中的不等于运算符也会返回 false即使两个变量中存储的值相同,两个值也不相同。
广告 该类别中的热门课程 PHP 开发人员 - 专业化 | 8 门课程系列 | 3次模拟测试开始您的免费软件开发课程
网络开发、编程语言、软件测试及其他
语法:
$variable1 != $variable2; $variable1 <> $variable2;
其中variable1表示要与variable2表示的变量进行数据类型比较的变量的值。
下面给出的是提到的示例:
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); ?>
输出:
在上面的程序中,一个整数值存储在名为variable1的变量中。然后,一个字符串值存储在名为“variable2”的变量中。两个变量中存储的值是相同的。然后我们使用不等于运算符来比较两个变量的数据类型。不等于运算符返回 false,因为即使变量中存储的值相同,但两个变量的数据类型不同。
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); ?>
输出:
在上面的程序中,一个字符串值存储在名为variable1的变量中。然后,一个字符串值存储在另一个名为“variable2”的变量中。两个变量中存储的值不同。然后我们使用不等于运算符来比较两个变量的数据类型。不等于运算符返回 true,因为即使变量中存储的值不同,但两个变量的数据类型相同。
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); ?>
输出:
在上面的程序中,一个字符串值存储在名为variable1的变量中。然后,一个字符串值存储在另一个名为“variable2”的变量中。两个变量中存储的值不同。然后我们使用不等于运算符来比较两个变量的数据类型。不等于运算符返回 true,因为即使变量中存储的值不同,但两个变量的数据类型相同。
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); ?>
输出:
在上面的程序中,一个整数值存储在名为variable1的变量中。然后,一个字符串值存储在名为“variable2”的变量中。两个变量中存储的值是相同的。然后我们使用不等于运算符来比较两个变量的数据类型。不等于运算符返回 false,因为即使变量中存储的值相同,但两个变量的数据类型不同。
以上是PHP 不等于的详细内容。更多信息请关注PHP中文网其他相关文章!