codice:
$a=array();
$a[]="testo1";
$a[]="testo2";
$a[]="testo3";
unset( $a[1] );
$a = array_values( $a );
print_r( $a );