Answers for "alternative to array push php"

PHP
6

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

Browse Popular Code Answers by Language