Answers for "add values to associative array php"

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
-1

how to push associative array in php

$arr = array(

  "name" => "jonh",
  "Mob" => "588555",
  "Email" => "[email protected]"

);

$arr['Country'] = "United State";
Posted by: Guest on December-16-2021

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

Browse Popular Code Answers by Language