#
ec061a93 |
| 12-Apr-2012 |
Nikita Popov |
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 ex
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.
show more ...
|
#
4968fa64 |
| 17-Apr-2012 |
theanomaly.is@gmail.com |
Fixed bug #61038; "Z" and better behavior for unpack() Added new "Z" argument to pack/unpack, now allowing "a" to return data without stripping, and "A" strips all trailing white space,
Fixed bug #61038; "Z" and better behavior for unpack() Added new "Z" argument to pack/unpack, now allowing "a" to return data without stripping, and "A" strips all trailing white space, while "Z" will strip everything after the first null.
show more ...
|
#
565892d4 |
| 15-Apr-2012 |
Xinchen Hui |
Implement const array/string dereference RFC:https://wiki.php.net/rfc/constdereference |
Revision tags: php-5.3.11RC2, php-5.4.1RC2 |
|
#
0e8d928c |
| 01-Apr-2012 |
Gustavo André dos Santos Lopes |
Update UPGRADING with changes. |
#
6c891f33 |
| 01-Apr-2012 |
Gustavo André dos Santos Lopes |
Put new function in correct section. |
Revision tags: php-5.3.11RC1, php-5.4.1RC1, PHP-5.4.1-RC1 |
|
#
867d9805 |
| 19-Mar-2012 |
Michael Wallner |
add note about corrected tiger hash output |
#
e99a8c77 |
| 12-Mar-2012 |
Rasmus Lerdorf |
This change was badly worded and filed in the wrong section. This isn't an ini change at all. |
#
6237456c |
| 06-Mar-2012 |
Christopher Jones |
Sync char set wording with migration doc |
#
eb8d56e1 |
| 06-Mar-2012 |
Christopher Jones |
Typo and missing zend ini param |
#
4db28a7e |
| 06-Mar-2012 |
Christopher Jones |
Typo: "outout" |
#
77e1a1ab |
| 05-Mar-2012 |
Christopher Jones |
Align section headings with the latest (5.4) migration on-line doc. This will aid future reuse of UPGRADING text. |
#
37b462ba |
| 04-Mar-2012 |
Pierre Joye |
- notes about xp&2003 drop |
#
4d0911c1 |
| 04-Mar-2012 |
Nikita Popov |
NEWS and UPGRADING for r323862 |
#
66be688c |
| 02-Mar-2012 |
Philip Olson |
Removed get_magic_quotes* functions from the deprecated list, because we love them so |
#
c1a8169e |
| 02-Mar-2012 |
Philip Olson |
Fixed ldap typos |
#
dd836f29 |
| 02-Mar-2012 |
Philip Olson |
magic quotes directives belong in the E_CORE_ERROR group, and not the E_DEPRECATED group |
#
21f7daac |
| 02-Mar-2012 |
Christopher Jones |
Mention file upload progress support: http://php.net/manual/en/session.upload-progress.php |
#
bd3a077d |
| 02-Mar-2012 |
Philip Olson |
Removed class constants (these were added in 5.3.7), and added the new Zlib functions |
#
62e1dc1d |
| 01-Mar-2012 |
Christopher Jones |
Sync sqlite -> PECL terminology with release announcement's |
#
0f5c3487 |
| 01-Mar-2012 |
Christopher Jones |
Reorganized to remove duplication. Cross checked a few php.ini settings. Area owners need to do a thorough review of this file. |
#
561a0dfb |
| 01-Mar-2012 |
Christopher Jones |
Some basic tidy up and whitespace fixes. The file still needs section disambiguation to remove duplicate entries. |
Revision tags: php-5.4.0 |
|
#
e391abb1 |
| 22-Feb-2012 |
Gustavo André dos Santos Lopes |
- Cleanup UPGRADING and UPGRADING.INTERNALS from 5.4 changes. - Added information about removal of streams pooling API. |
#
37272e46 |
| 21-Feb-2012 |
Adam Harvey |
Add a __wakeup() method to SplFixedArray, thereby fixing serialising an SplFixedArray object and bug #60560 (SplFixedArray un-/serialize, getSize(), count() return 0, keys are strings). |
Revision tags: php-5.4.0RC8, php-5.3.10, php-5.4.0RC7, php-5.4.0RC6 |
|
#
302adc4e |
| 18-Jan-2012 |
Michael Wallner |
add notes about ob_start(), gzencode() and removed hash algos |
Revision tags: php-5.3.9, php-5.4.0RC5, php-5.3.9RC4, php-5.4.0RC4 |
|
#
622412d8 |
| 19-Dec-2011 |
Stanislav Malyshev |
implement the solution for isset/string offsets, fix bug #60362 |