rfc:array-sort-return-array

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
rfc:array-sort-return-array [2024/10/20 18:58] – Fix typo array_walk_recursive nielsdosrfc:array-sort-return-array [2025/04/03 13:08] (current) – external edit 127.0.0.1
Line 4: Line 4:
   * Date: 2024-10-20   * Date: 2024-10-20
   * Author: Gina Peter Banyard <girgias@php.net>   * Author: Gina Peter Banyard <girgias@php.net>
-  * Status: Under Discussion+  * Status: Withdrawn
   * Target Version: PHP 8.5   * Target Version: PHP 8.5
   * Implementation: TBD   * Implementation: TBD
Line 13: Line 13:
 The PHP array sort functions take the array to sort as a by-reference array to sort the array in place. The PHP array sort functions take the array to sort as a by-reference array to sort the array in place.
 However, since PHP 5.6 these function have only ever returned <php>true</php>. However, since PHP 5.6 these function have only ever returned <php>true</php>.
 +
 Moreover, it would only return <php>false</php> (or <php>null</php>) prior to this version in case of a memory allocation failure. Moreover, it would only return <php>false</php> (or <php>null</php>) prior to this version in case of a memory allocation failure.
 This effectively means the return values of these functions are useless. This effectively means the return values of these functions are useless.
Line 55: Line 56:
  
 ===== Unaffected PHP Functionality ===== ===== Unaffected PHP Functionality =====
 +
 +The functions continue to take the first parameter by-reference and do the sorting in-place.
  
 The sort methods from the SPL <php>ArrayObject</php> class are not affected by this change. The sort methods from the SPL <php>ArrayObject</php> class are not affected by this change.
Line 74: Line 77:
  
 ===== References ===== ===== References =====
 +
 +Internals discussion thread: https://externals.io/message/125809
  
rfc/array-sort-return-array.1729450739.txt.gz · Last modified: 2025/04/03 13:08 (external edit)