spliti
(PHP 4 >= 4.0.1, PHP 5)
spliti — Scinde une chaîne en un tableau, grâce à une expression rationnelle
Description
array spliti
( string $pattern
, string $string
[, int $limit
] )
spliti() est identique à split(), hormis le fait qu'elle ignore la casse.
Scinder une chaîne en utilisant la lettre 'a' comme séparateur :
Example#1 Exemple avec spliti()
<?php
$string = "aBBBaCCCADDDaEEEaGGGA";
$chunks = spliti ("a", $string, 5);
print_r($chunks);
?>
L'exemple ci-dessus va afficher :
Array ( [0] => [1] => BBB [2] => CCC [3] => DDD [4] => EEEaGGGA )
Voir aussi preg_split(), split(), explode() et implode().