PHP array slicing preserves key names

王林
Release: 2024-04-29 16:48:02
Original
1104 people have browsed it

By specifying the fourth parameter preserve_keys as true, the array_slice() function can preserve the key names of PHP associative array slices: Preserve key names: Specify preserve_keys as true. Syntax: array_slice(array, offset, length, preserve_keys). Practical case: Use an example to show how to retain the key names of associative array slices.

PHP array slicing preserves key names

PHP array slice that retains the key name

PHP array slice functionarray_slice() will be reset by default Program key names. However, we can preserve the key names by specifying the fourth parameter preserve_keys as true.

Grammar:

array_slice(array $array, int $offset, int $length, bool $preserve_keys = FALSE)
Copy after login

Practical case:

Suppose we have a file named $fruits An associative array where the key is the name of the fruit and the value is the number of fruits. We want to get a slice of two elements starting at index 1 while retaining the key names:

$fruits = array('apple' => 2, 'banana' => 3, 'orange' => 5, 'pear' => 1);

$slice = array_slice($fruits, 1, 2, true);

print_r($slice);
Copy after login

Output:

Array
(
    [banana] => 3
    [orange] => 5
)
Copy after login

As we can see, the $slice array retains The key name of the original array.

The above is the detailed content of PHP array slicing preserves key names. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template