Snippets tagged "string php"
classés par popularité
get by date
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);
