PHP 8.5.0 Beta 1 available for testing

Voting

: three plus six?
(Example: nine)

The Note You're Voting On

Palz
12 years ago
To create a range array like

Array
(
[11] => 1
[12] => 2
[13] => 3
[14] => 4
)

combine two range arrays using array_combine:

array_combine(range(11,14),range(1,4))

<< Back to user notes page

To Top