19-12-2007, 03:04 PM
ben array_splice() permet de le faire
Pour retirer un element:
Pour retirer un element:
Code PHP :
<?php
$liste=array("a","b","c","d","e");
//La position de l'element à extraire( ici ce sera "c")
$position_element=2;
array_splice ($liste, $position_element,1);
//Affiche Array ( [0] => a [1] => b [2] => d [3] => e )
print_r($liste);
Pour en ajouter un:
Code PHP :
<?php
$liste=array("a","b","c","e");
//La position de l'element à ajouter( ici ce sera "d")
$position_element=3;
array_splice ($liste, $position_element,0,array("d"));
//Affiche Array ( [0] => a [1] => b [2] => c [3] => d [4] => e )
print_r($liste);