“PHP Ajouter au tableau” Réponses codées

PHP Ajouter au tableau

$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 Ajouter au tableau

$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 en 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 Ajouter un élément au tableau

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

Ajouter un élément au tableau en php

<?php

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

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

print_r($a);
?>
Dark Dugong

APPENDE DE PHP


<?php
$stack = array("orange", "banana");
array_push($stack, "apple", "raspberry");
print_r($stack);
?>
Homely Hamerkop

Réponses similaires à “PHP Ajouter au tableau”

Questions similaires à “PHP Ajouter au tableau”

Plus de réponses similaires à “PHP Ajouter au tableau” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code