Maison >développement back-end >Problème PHP >Quelle est la fonction pour diviser une chaîne en php
Les fonctions PHP pour diviser les chaînes incluent explosive() et str_split()
explode()
Cette fonction est la fonction inverse de implode(). Elle utilise une chaîne pour diviser une autre chaîne et renvoie un tableau.
Syntaxe : (Apprentissage recommandé : Tutoriel vidéo PHP)
array explode( string separator, string string [, int limit] )<br/>
Exemple :
<?php<br/>$str = 'one|two|three|four';<br/>print_r(explode('|', $str));<br/>print_r(explode('|', $str, 2));<br/>// 负数的 limit(自 PHP 5.1 起)<br/>print_r(explode('|', $str, -1));<br/>?><br/>
Le résultat de sortie est le suivant :
Array<br/>(<br/> [0] => one<br/> [1] => two<br/> [2] => three<br/> [3] => four<br/>)<br/>Array<br/>(<br/> [0] => one<br/> [1] => two|three|four<br/>)<br/>Array<br/>(<br/> [0] => one<br/> [1] => two<br/> [2] => three<br/>)<br/>
str_split()
str_split() divise la chaîne en un tableau et renvoie un tableau avec succès.
Syntaxe :
array str_split( string string [, int length] )<br/>
Exemple :
<?php<br/>$str = 'one two three';<br/>$arr1 = str_split($str);<br/>$arr2 = str_split($str, 3);<br/>print_r($arr1);<br/>print_r($arr2);<br/>?><br/>
Le résultat est le suivant :
Array<br/>(<br/> [0] => o<br/> [1] => n<br/> [2] => e<br/> [3] => <br/> [4] => t<br/> [5] => w<br/> [6] => o<br/> [7] => <br/> [8] => t<br/> [9] => h<br/> [10] => r<br/> [11] => e<br/> [12] => e<br/>)<br/>Array<br/>(<br/> [0] => one<br/> [1] => tw<br/> [2] => o t<br/> [3] => hre<br/> [4] => e<br/>)<br/>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!