Answers for "php prepend to associative array"

PHP
4

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

how to add an array into an associative array in php

$data[$category][] = $item;
Posted by: Guest on July-25-2021

Code answers related to "php prepend to associative array"

Browse Popular Code Answers by Language