Les fonctions Array en PHP sont très utiles pour traiter les tableaux. Dans cet article, nous examinerons de plus près certaines des fonctions de tableau les plus couramment utilisées. La fonction
array_push() peut pousser un ou plusieurs éléments à la fin du tableau. La syntaxe est la suivante :
array_push($array, $value1, $value2, ...);
Exemple :
$fruits = array("apple", "banana"); array_push($fruits, "orange", "watermelon"); print_r($fruits);
Sortie :
Array ( [0] => apple [1] => banana [2] => orange [3] => watermelon )
array_pop($array);
$fruits = array("apple", "banana", "orange", "watermelon"); $pop = array_pop($fruits); echo $pop; //输出:watermelon print_r($fruits);
Array ( [0] => apple [1] => banana [2] => orange )
array_shift($array);
Exemple :
$fruits = array("apple", "banana", "orange", "watermelon"); $shift = array_shift($fruits); echo $shift; //输出:apple print_r($fruits);
Sortie :
Array ( [0] => banana [1] => orange [2] => watermelon )
array_unshift($array, $value1, $value2, ...);
$fruits = array("apple", "banana", "orange"); array_unshift($fruits, "watermelon", "kiwi"); print_r($fruits);
Array ( [0] => watermelon [1] => kiwi [2] => apple [3] => banana [4] => orange )
array_reverse()
#🎜 La fonction 🎜#array_reverse($array);
$fruits = array("apple", "banana", "orange", "watermelon"); $reverse_fruits = array_reverse($fruits); print_r($reverse_fruits);
Sortie :
Array ( [0] => watermelon [1] => orange [2] => banana [3] => apple )
#🎜 La fonction 🎜#
array_slice() peut obtenir une tranche d'un tableau. La syntaxe est la suivante :array_slice($array, $offset, $length);
$fruits = array("apple", "banana", "orange", "watermelon"); $sliced_fruits = array_slice($fruits, 1, 2); print_r($sliced_fruits);
Array ( [0] => banana [1] => orange )
array_splice()
array _épissure () peut remplacer ou supprimer un segment du tableau et insérer de nouveaux éléments. La syntaxe est la suivante :array_splice($array, $offset, $length, $replace_array);
$fruits = array("apple", "banana", "orange", "watermelon"); array_splice($fruits, 1, 2, array("kiwi", "grape")); print_r($fruits);
Array ( [0] => apple [1] => kiwi [2] => grape [3] => watermelon )
array_key_exists($key, $array);
$fruits = array("apple" => 1, "banana" => 2, "orange" => 3); if (array_key_exists("banana", $fruits)) { echo "存在"; } else { echo "不存在"; }
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!