Page MenuHomePhabricator

In "array_mergev()", guarantee the "call_user_func_array()" parameter list is a natrual list
ClosedPublic

Authored by epriestley on Feb 8 2021, 6:17 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Jun 5, 5:07 PM
Unknown Object (File)
Tue, Jun 3, 8:45 PM
Unknown Object (File)
Jun 2 2025, 2:58 AM
Unknown Object (File)
May 30 2025, 5:45 AM
Unknown Object (File)
May 10 2025, 8:04 AM
Unknown Object (File)
May 9 2025, 12:37 AM
Unknown Object (File)
May 5 2025, 9:18 PM
Unknown Object (File)
Apr 29 2025, 6:34 PM
Subscribers
None

Details

Summary

Ref T13588. The behavior of "call_user_func_array()" has changed in PHP8, and the function now attempts to use array keys as argument names.

This always fails when calling "array_merge()" (which does not accept named parameters), and may cause misbehavior in the general case.

Guarantee the argument is a natural list (with keys "0", "1", "2", ...).

Test Plan

Diff Detail

Repository
rARC Arcanist
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

This revision was not accepted when it landed; it landed in state Needs Review.Feb 8 2021, 6:18 PM
epriestley requested review of this revision.
This revision was automatically updated to reflect the committed changes.