Answers for "php array_push"

PHP
67

php append to array

$myArr = [1, 2, 3, 4];

array_push($myArr, 5, 8);
print_r($myArr); // [1, 2, 3, 4, 5, 8]

$myArr[] = -1;
print_r($myArr); // [1, 2, 3, 4, 5, 8, -1]
Posted by: Guest on January-21-2020
1

array push foreach php

$items = array();
foreach($group_membership as $username) {
 $items[] = $username;
}

print_r($items);
Posted by: Guest on September-02-2020
3

php add to array

$fruits = ["apple", "banana"];
// array_push() function inserts one or more elements to the end of an array
array_push($fruits, "orange");

// If you use array_push() to add one element to the array, it's better to use
// $fruits[] = because in that way there is no overhead of calling a function.
$fruits[] = "orange";

// output: Array ( [0] => apple [1] => banana [2] => orange )
Posted by: Guest on December-29-2020
16

php append element to array

array_push($cart, 13);
Posted by: Guest on March-04-2020
5

array_push

$array[$key] = $value;
// or
$array[] = $value;
// or
array_push($array, [ mixed $... ]);
Posted by: Guest on October-09-2020
0

php array_push

PHP function array_push(array &$array, ...$values) int
------------------------------------------------------
Push elements onto the end of array. Since 7.3.0 this function can be called with only one parameter. 
For earlier versions at least two parameters are required.
  
Parameters:
array--$array--The input array.
mixed--...$values--[optional] The pushed variables.
  
Returns: the number of elements in the array.
Posted by: Guest on September-12-2021

Browse Popular Code Answers by Language