Creare un nuovo file PHP usando un editor o il Blocco note. Ad esempio, digitare :
nano arrays.php
2
creare un nuovo array con il " array ( ) " costrutto . Ad esempio, digitare : < ? Php
$ company_officers = ( " Presidente " = >
" " John "," Vicepresidente " = > " Jane " , " Segretario . "= > " Pietro " , " tesoriere " = > " Susan " ) ;
3
Ripristina l'array con la funzione" unset " Ad esempio, digitare :
unset ( $ company_officers ) ;
4
Ripristina l'array impostando la variabile pari ad un array vuoto , ad esempio, digitare: .
$ company_officers = array ( ) ;
5
di prova al fine di garantire che l'array è stato azzerato , ad esempio, digitare: .
if ( $ company_officers === null)
echo "reset Array " ;
altro
echo " Array non resettare "; ! ?
>
6
Salvare il file ed eseguirlo in un browser per assicurarsi che l'array viene reimpostato correttamente .
Programmazione © www.354353.com