[2007年03月21日 17:43 UTC] ed at webspecdesign dot com
Description: ------------ Basically just being able to use some syntactic sugar to evaluate an expression like this: if ( 10 > $x > 5) { echo $x.' is greater than 5, but less than 10'; } which is the same as: if ($x < 10 && $x > 5) { echo $x.' is greater than 5, but less than 10'; } PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016年12月31日 00:09 UTC] cmb@php.net
-Package: Feature/Change Request
+Package: Scripting Engine problem
[2016年12月31日 00:09 UTC] cmb@php.net
[2020年01月08日 13:19 UTC] nikic@php.net
-Summary: New Feature for evaluating expressions
+Summary: Allow chaining of comparison operators
|