Answers for "php add element to beginning of associative array"

PHP
0

php add element to beginning of associative array

$arr1 = array('key0' => 'value0') + $arr1;

-------------- OR ------------------

<?php
$arr = array('key1' => 'value1', 'key2' => 'value2');
$arr = array_merge(array('key0' => 'value0'), $arr);
Posted by: Guest on October-17-2020

Code answers related to "php add element to beginning of associative array"

Browse Popular Code Answers by Language