Snippets tagged "array string php"
classés par date
get by popularity
Replier tout
Obtenir un tableau de caractères depuis une chaîne en PHP4
En php5 on a str_split : http://fr.php.net/manual/fr/function.str-split.php
Et en PHP4 :
$chars = preg_split('#(?<=.)(?=.)#s', $string);
