Sintaxis:
$token=strtok(variable,split);
Ejemplo:
<html>
<body>
<?php
$string="Lapiz, Goma, Papel";
$divi=strtok($string,",");
while ($divi!=false){
echo $divi . "<br>";
$divi=strtok(",");
}
?>
</body>
</html>
Vamos a hacer la enciclopedia de programacion mas grossa de todo el Internestor!!!!!
$token=strtok(variable,split);
<html>
<body>
<?php
$string="Lapiz, Goma, Papel";
$divi=strtok($string,",");
while ($divi!=false){
echo $divi . "<br>";
$divi=strtok(",");
}
?>
</body>
</html>
No hay comentarios.:
Publicar un comentario