Answers for "push into an associative array php"

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
4

array_push in php

<?php
// Insert "blue" and "yellow" to the end of an array:


$a=array("red","green");
array_push($a,"blue","yellow");
print_r($a);
?>
Posted by: Guest on October-05-2020

Code answers related to "push into an associative array php"

Browse Popular Code Answers by Language