From: Stanislav Malyshev Date: Thu, 24 May 2012 19:17:07 +0000 (-0500) Subject: Merge branch 'pull-request/54' X-Git-Tag: php-5.5.0alpha1~153 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b187c35f236edd7370d63f02c26d5272997830ee;p=php Merge branch 'pull-request/54' * pull-request/54: Allow arbitrary expressions for empty() This change is as per RFC https://wiki.php.net/rfc/empty_isset_exprs. The change allows passing the result of function calls and other expressions to the empty() language construct. This is accomplished by simply rewriting empty(expr) to !expr. The change does not affect the suppression of errors when using empty() on variables. empty($undefinedVar) will continue not to throw errors. When an expression is used inside empty() on the other hand, errors will not be suppressed. Thus empty($undefinedVar + $somethingElse) *will* throw a notice. The change also does not make empty() into a real function, so using 'empty' as a callback is still not possible. In addition to the empty() changes the commit adds nicer error messages when isset() is used on function call results or other expressions. --- b187c35f236edd7370d63f02c26d5272997830ee diff --cc UPGRADING index 44f75561d7,0fae6147db..73cf10641f --- a/UPGRADING +++ b/UPGRADING @@@ -51,15 -54,7 +54,15 @@@ PHP X.Y UPGRADE NOTE - Implemented format character "Z": NUL-padded string - "a" now does not remove trailing NUL characters on unpack() anymore - "A" will now strip all trailing ASCII whitespace on unpack() (it used to - remove only trailing spaces. - remove only trailing spaces) ++ remove only trailing spaces). +- MessageFormatter::format() and related functions now accepted named arguments + and mixed numeric/named arguments in ICU 4.8+. +- MessageFormatter::format() and related functions now don't error out when + an insufficient argument count is provided. Instead, the placeholders will + remain unsubstituted. +- MessageFormatter::parse() and MessageFormat::format() (and their static + equivalents) now don't throw away better than second precision in the + arguments. ======================================== 5. New Functions