PHP - Funzione Strtok
Sintassi
strtok(string,split)
Definizione e utilizzo
È una stringa tokenize
Valori restituiti
Restituisce un token di stringa
Parametri
Suor n | Parametri e descrizione |
---|---|
1 | string Specifica la stringa da dividere |
2 | split Specifica uno o più caratteri divisi |
Esempio
Prova il seguente esempio
<?php
$input = "tutorials point simple easy learning.";
$token = strtok($input, " ");
while ($token !== false){
echo "$token<br>";
$token = strtok(" ");
}
?>
Questo produrrà il seguente risultato:
tutorials
point
simple
easy
learning.