Solucio afegir element array php

De wikiserver
Dreceres ràpides: navegació, cerca

Solucio PHP:

$myarray = array(1,2,3,4,5);
print_r($myarray);echo "<br>";
//posicion 3.
array_splice($myarray, 3,0,"$");
//nuevo array:
print_r($myarray);