Eliminar posiciones de arrays en PHP
Para eliminar un elemento de un array hay que tener en cuenta que es diferente según el tipo de array, y según queramos eliminar un elemento por su clave o por su valor.
Eliminar por clave en array NO asociativo
$miArrayNoAsociativo[0]="A";
$miArrayNoAsociativo[1]="B";
$miArrayNoAsociativo[2]="C";
unset($miArrayNoAsociativo[0]);
//He eliminado "A", resultado (1=>"B",2=>"C");
unset($miArrayNoAsociativo[2]);
//He eliminado "C", resultado (1=>"B");
//Normalizar el array
$miArrayNoAsociativo = array_values($miArrayNoAsociativo);
//resultado (0=>"B");
Otra opción es utilizar array_splice directamente con cada elemento a eliminar, que provoca la eliminación inmediata de la posición del array y su normalización. Para eliminar los mismos elementos en este caso, hacemos:
$miArrayNoAsociativo[0]="A";
$miArrayNoAsociativo[1]="B";
$miArrayNoAsociativo[2]="C";
//Indicamos el array de dónde eliminar, la posición,
// y el 1 es para que sólo elimine esa posición
array_splice($miArrayNoAsociativo, 0, 1);
//resultado (0=>"B",1=>"C");
array_splice($miArrayNoAsociativo, 1, 1);
//resultado (0=>"B");
Eliminar por clave en array asociativo
Para este tipo de arrays, utilizamos unset:
$miArrayAsociativo["a"]="A";
$miArrayAsociativo["b"]="B";
$miArrayAsociativo["c"]="C";
unset($miArrayAsociativo["a"]);
//He eliminado "A", resultado ("b"=>"B","c"=>"C");
unset($miArrayAsociativo["c"]);
//He eliminado "C", resultado ("b"=>"B");
Eliminar por valor en array NO asociativo
$miArrayNoAsociativo[0]="A";
$miArrayNoAsociativo[1]="B";
$miArrayNoAsociativo[2]="C";
$posicionAEliminar = array_search("B",$miArrayNoAsociativo,false);
array_splice($miArrayNoAsociativo, $posicionAEliminar, 1);
//resultado (0=>"A",1=>"C");
Eliminar por valor en array asociativo
$miArrayAsociativo["a"]="A";
$miArrayAsociativo["b"]="B";
$miArrayAsociativo["c"]="C";
$posicionAEliminar = array_search("B",$miArrayAsociativo,false);
array_splice($miArrayAsociativo, $posicionAEliminar, 1);
//resultado ("a"=>"A","c"=>"C");

osmotic behaviour of rbc in glucose…
Buy_generic pills…
nursing drug study website…
Buy_drugs without prescription…
percy weston cancer cause cure book…
Buy_generic drugs…
planar warts…
Buy_drugs without prescription…
azithromycin 250 mg tablets…
Buy_now it…
calculate ldl…
Buy_drugs without prescription…
stop smoking phlegm…
Buy_drugs without prescription…
viagra prostate removal…
Buy_generic drugs…
what foods anorexia eat…
Buy_drugs without prescription…
exmoor pet care…
Buy_generic drugs…
treatment of melanoma and vaginal cancer…
Buy_generic drugs…
nexium pepsin ac…
Buy_generic drugs…
sphenoid sinusitis causes double vision…
Buy_it now…
most effective antibiotics strep throat…
Buy_no prescription…
will the recession become a depression…
Buy_without prescription…
teen girl 16 18.6 bmi…
Buy_generic drugs…
colon cancer systems…
Buy_now it…
mycotic aortic abdominal aneurysm…
Buy_it now…
acne scar and pit lamp…
Buy_generic drugs…
synephrine hcl diet pills…
Buy_generic pills…
terry abbot…
Buy_generic drugs…
food and drug regulatory…
Buy_it now…
johns hopkins lung cancer…
Buy_drugs without prescription…
autoimmune hepatitis glyconutrients…
Buy_generic meds…
benicar hct and norvasc…
Buy_it now…
keynesian economics great depression…
Buy_generic drugs…
macon georgia drug court…
Buy_without prescription…
postnatal doctor visit costs…
Buy_generic drugs…
2012 Fashion ideas k…
I guess what I’m trying to say is, I don’t think you can measure life in terms of years. I think longevity doesn’t necessarily have anything to do with happiness. I mean happiness comes from facing challenges and going out on a limb and taking risks…
2012 Fashion ideas b…
Events in the past may be roughly divided into those which probably never happened and those which do not matter….