什么是PHP 7中的(“ Spaceship”运算符)?

什么是PHP 7中的(“ Spaceship”运算符)?,第1张

什么是PHP 7中的(“ Spaceship”运算符)?

<=>
(“飞船”),运营商将提供,它会合并比较:

Return 0 if values on either side are equalReturn 1 if the value on the left is greaterReturn -1 if the value on the right is greater

组合比较运算符使用的规则与PHP
viz当前使用的比较运算符相同。

<
<=
==
>=
>
。那些来自Perl或Ruby编程背景的人可能已经熟悉为PHP7建议的这个新运算符。

   //Comparing Integers    echo 1 <=> 1; //output  0    echo 3 <=> 4; //output -1    echo 4 <=> 3; //output  1    //String Comparison    echo "x" <=> "x"; //output  0    echo "x" <=> "y"; //output -1    echo "y" <=> "x"; //output  1


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5064706.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存