Maison > Article > développement back-end > (Pratique) Résumé d'exemples de fonctions de chaînes couramment utilisées en PHP [conversion, remplacement, calcul, interception, chiffrement]
Les exemples de cet article résument les fonctions de chaîne couramment utilisées en PHP. Partagez-le avec tout le monde pour votre référence, les détails sont les suivants :
nl2br
fonction : convertir les sauts de ligne en 0c6dc11e160d3b678d68754cc175188a
<?php $str = "cat isn't \n dog"; $result = nl2br($str); echo $result; /**结果 cat isn't dog */
rtrim
fonction : Effacer les espaces à droite
<?php $str = "Hello world "; echo strlen($str)."<br>"; $result = rtrim($str); echo strlen($result); /**结果 14 11 */
strip_tags
Fonction : Effacer les balises html et php dans la chaîne
<?php $str = "<font color = 'red'>Hello world</font>"; $result = strip_tags($str); echo $result; /**结果 Hello world */
strtolower et strtoupper
Fonction : Convertir en majuscules et minuscules
<?php $str = "Hello World!"; $result = strtolower($str); echo $result."<br>"; $result = strtoupper($str); echo $result; /**结果 hello world! HELLO WORLD! */
trim
Fonction : Supprimer les espaces de début et de fin
<?php $str = " Hello World! "; $result = trim($str); echo $str."<br>"; echo $result."<br>"; echo strlen($str)."<br>"; echo strlen($result); /**结果 Hello World! Hello World! 16 12 */
str_ireplace
Fonction : Remplacer
<?php $str = "zhang san"; $result = str_ireplace("zhang","li",$str); echo $str."<br>"; echo $result; /**结果 zhang san li san */
str_repeat
Fonction : Répéter une chaîne plusieurs fois
<?php $str = "Hello jiqing!"; $result = str_repeat($str,4); echo $str."<br>"; echo $result; /**结果 Hello jiqing! Hello jiqing!Hello jiqing!Hello jiqing!Hello jiqing! */
str_replace
Fonction : Sensible à la casse remplacement
<?php $str = "hello jiqing!"; $result1 = str_ireplace("Hello","Hi",$str); //不区分大小写 $result2 = str_replace("Hello","Hi",$str); //区分大小写 echo $str."<br>"; echo $result1."<br>"; echo $result2."<br>"; /**结果 hello jiqing! Hi jiqing! hello jiqing! */
str_word_count
Fonction : Renvoie le nombre de mots dans la chaîne
<?php $str = "hello jiqing a!"; $result1 = str_word_count($str); //返回个数 $result2 = str_word_count($str,1); //返回数组 echo $str."<br>"; echo $result1."<br>"; print_r($result2); /**结果 hello jiqing a! 3 Array ( [0] => hello [1] => jiqing [2] => a ) */
strlen
Fonction : Renvoie la longueur du string
<?php $str = "hello jiqing a!"; $result = strlen($str); echo $result; /**结果 15 */
substr_count
Fonction : Compter le numéro d'une chaîne dans une autre chaîne
<?php $str = "hello jiqing ,hello jim!"; $result = substr_count($str,"hello"); echo $result; /**结果 2 */
substr_replace
Fonction : Remplacer à partir d'un certaine position
<?php $str = "hello jiqing ,hello jim!"; $result = substr_replace($str,"zhangsan",6); echo $result."<br>"; $result = substr_replace($str,"zhangsan",6,6);//从某个位置替换,替换几个字符串 echo $result; /**结果 hello zhangsan hello zhangsan ,hello jim! */
substr
Fonction : Obtenir une sous-chaîne
<?php $str = "abcdef"; $result = substr($str,0,1); //从第0个开始,获取1个 echo $result."<br>"; $result = substr($str,0,-1);//从第0个开始,获取到除了最后一个的字符串 echo $result."<br>"; $result = substr($str,2,-1);//从第2个开始,获取到除了最后一个的字符串 echo $result."<br>"; $result = substr($str,-3,-1);//从第-3个开始,获取到除了最后一个的字符串 echo $result."<br>"; $result = substr($str,-3,1);//从第-3个开始,获取到除了最后一个的字符串 echo $result."<br>"; /**结果 a abcde cde de d */
implode
Fonction : Convertir un tableau en chaîne
<?php $array = array("2016","6","3"); $date = implode("/",$array); echo $date; /**结果 2016/6/3 */
md5
Fonction : cryptage md5 des chaînes
<?php $str = "Hello world"; $result = md5($str); echo $result; /**结果 3e25960a79dbc69b674cd4ec67a72c62 */
Ce qui précède est un résumé (pratique) d'exemples de fonctions de chaînes couramment utilisées en PHP [conversion, remplacement, calcul, interception , cryptage] Pour plus de contenu connexe, veuillez faire attention au site Web PHP chinois (www.php.cn) !