Answers for "php add associative record to array"

PHP
2

php add to associative array

// for php 5.4+
$data += [$key => $value];

// for php 5.4-
$data += array($key => $value);
Posted by: Guest on October-26-2020
0

php add to existing associative array

$a1=['aa'=>'123' , 'bb'=>'454'];

$a1 = array_merge( $a1 , ['a'=>1,'b'=>2] ) ;
Posted by: Guest on January-11-2021

Code answers related to "php add associative record to array"

Browse Popular Code Answers by Language