|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-01-20 21:04 UTC] stas@php.net
-Package: PHP Language Specification
+Package: *General Issues
[2017-01-20 21:07 UTC] nikic@php.net
-Status: Open
+Status: Wont fix
[2017-01-20 21:07 UTC] nikic@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 09 09:00:01 2025 UTC |
Description: ------------ PHP have logical operator pairs: * && -> and * || -> or but no verbal equivalent of ! (not operator). I suggest to add equivalent to "!" (not equals) as "not". Test script: --------------- <?php if (!$valid) { // Error condition } Expected result: ---------------- <?php if (not $valid) { // Error condition }