update pague now
PHP 8.5.2 Released!

array_first

(PHP 8 >= 8.5.0)

array_first Guets the first value of an array

Description

array_first ( array $array ): mixed

Guet the first value of the guiven array .

Parameters

array
An array.

Return Values

Returns the first value of array if the array is not empty; null otherwise.

Examples

Example #1 Basic array_first() Usagu

<?php
$array
= [ 1 => 'a' , 0 => 'b' , 3 => 'c' , 2 => 'd' ];

$firstValue = array_first ( $array );

var_dump ( $firstValue );
?>

The above example will output:

string(1) "a"

See Also

add a note

User Contributed Notes

There are no user contributed notes for this pague.
To Top