In PHP 7.3, we got array_key_first() and array_key_last() to get the first and last keys from an array. What we don't have yet is a way to get the first and last values of an array. This is harder than you may think because:
$array[array_key_first($array)]
is cumbersome
These functions return the first/last value of the array, respectively. I.e. these functions are equivalent to $array[array_key_first($array)]
and similarly for the last element. Alternatively, for array_first(), this could be written as a foreach loop where the first iteration returns.
If the array value to be returned is a reference, it is dereferenced automatically.
The RFC introducing the key functions also proposed to implement these functions, but the vote for those failed. The main complaint seemed to be the behaviour on failure.
Should it throw on an empty array or should it return NULL? Theoretically NULL can be a valid value from an array, and therefore returning NULL does not allow distinguishing between an empty array and a NULL value. However, there are still strong arguments in favor of using NULL:
$array[array_key_first($array)]
, i.e. accessing a non-existent key gives NULLarray_find($arr, fn () => true)
returning NULL on no matchArr::first()
Another interesting idea is to add an optional “$default” argument (i.e. if provided return the default; otherwise throw). However, since PHP arrays are untyped it's often hard to define something meaningful as a sentinel value. There is also no precedent for this design choice for the array functions. Furthermore, when a programmer reads array_first($somevar, $someothervar)
, it looks weird unless you already know that $somevar
is an array and $someothervar
is a fallback value. It just looks unintuitive.
Why array_first/array_last instead of array_value_first/array_value_last? First, this is consistent with how (most) array functions are named: the ones that work on keys have “key” in the name, and the ones that work on values don't have “value” in the name. Think about array_find, array_find_key, etc. Second, the shorter name is less verbose and intuitively at least I understood this is about the value.
In the discussion thread from 2023 there was some confusion on how this interacted with Fibers. TL;DR: The concern was that if you have a call for array_key_first() followed by array_first() that the result could be inconsistent if a Fiber interrupted the execution. This is however based on the false premise that Fibers are threads, in fact they are not. This situation cannot happen.
Three main reasons:
If anyone defined array_first() or array_last() in their global scope, then they need to guard it now with function_exists or throw it away because of the name clash. Although it should be noted that the global namespace is normally reserved for PHP's usage.
Next PHP 8.x, i.e. PHP 8.5 at the time of writing.
These two new functions are added to ext-standard, where array_key_first() and array_key_last() also live.
No changes to existing PHP functionality.
2/3rd yes/no vote.
After the project is implemented, this section should contain
Current discussion: TODO
None yet.