“Fügen Sie Array zum Array -PHP hinzu” Code-Antworten

PHP an Array angehängt

$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]
Allen

PHP zum Array hinzufügen

$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 )
Yingfufu

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);
?>
MohammadMark

PHP Element in Array hinzufügen

<?php
  $z = ['me','you', 'he'];
  array_push($z, 'she', 'it');
  print_r($z);
?>
JK

Fügen Sie Element in das Array in PHP hinzu

<?php

$a=array("red","green");

array_push($a,"blue","yellow");

print_r($a);
?>
Dark Dugong

Fügen Sie Array zum Array -PHP hinzu

<?php
$array1 = array("color" => "red", 2, 4);
$array2 = array("a", "b", "color" => "green", "shape" => "trapezoid", 4);
$result = array_merge($array1, $array2);
/*
Array
(
    [color] => green
    [0] => 2
    [1] => 4
    [2] => a
    [3] => b
    [shape] => trapezoid
    [4] => 4
)
*/
?>
Vast Vulture

Ähnliche Antworten wie “Fügen Sie Array zum Array -PHP hinzu”

Fragen ähnlich wie “Fügen Sie Array zum Array -PHP hinzu”

Weitere verwandte Antworten zu “Fügen Sie Array zum Array -PHP hinzu” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen