Maison  >  Article  >  développement back-end  >  Comment comparer des chaînes en PHP

Comment comparer des chaînes en PHP

一个新手
一个新手original
2018-05-14 14:34:542688parcourir

Comparer les chaînes par octets

La comparaison des chaînes par octets est la méthode la plus courante. Les fonctions pouvant être utilisées sont strcmp() et strcasecmp().

La différence entre ces deux fonctions est que strcmp() distingue la casse des caractères, tandis que strcasecmp() ne distingue pas la casse des caractères. L'utilisation des deux fonctions est fondamentalement la même.

Seul strcmp() est introduit ici ;

La syntaxe est la suivante

int strcmp(string str1,string str2)

Paramètre str1 et paramètre str2 doivent être comparés. Si les deux chaînes sont égales, 0 est renvoyé ; si le paramètre str1 est supérieur à str2, la valeur de retour est supérieure à 0 ; si le paramètre str1 est inférieur à str2, la valeur de retour est inférieure à 0.

Par exemple :

<span style="background-color:rgb(255,228,255); color:rgb(102,0,0)">$str1</span><span style="background-color:rgb(247,250,255)">=</span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"107</strong></span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0); font-family:宋体"><strong>网站工作室</strong></span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"</strong></span><span style="background-color:rgb(247,250,255)">;<br></span><span style="background-color:rgb(247,250,255); color:rgb(102,0,0)">$str2</span><span style="background-color:rgb(247,250,255)">=</span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"107</strong></span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0); font-family:宋体"><strong>网站工作</strong></span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"</strong></span><span style="background-color:rgb(247,250,255)">;<br></span><span style="background-color:rgb(247,250,255); color:rgb(0,0,128)"><strong>echo </strong></span><span style="background-color:rgb(247,250,255)"><em>strcmp</em></span><span style="background-color:rgb(247,250,255)">(</span><span style="background-color:rgb(228,228,255); color:rgb(102,0,0)">$str1</span><span style="background-color:rgb(247,250,255)">,</span><span style="background-color:rgb(247,250,255); color:rgb(102,0,0)">$str2</span><span style="background-color:rgb(247,250,255)">);<br></span><span style="background-color:rgb(247,250,255); color:rgb(102,0,0)">$str3</span><span style="background-color:rgb(247,250,255)">=</span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"lab"</strong></span><span style="background-color:rgb(247,250,255)">;<br></span><span style="background-color:rgb(247,250,255); color:rgb(102,0,0)">$str4</span><span style="background-color:rgb(247,250,255)">=</span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"LAB"</strong></span><span style="background-color:rgb(247,250,255)">;<br></span><span style="background-color:rgb(247,250,255); color:rgb(0,0,128)"><strong>echo </strong></span><span style="background-color:rgb(247,250,255)"><em>strcmp</em></span><span style="background-color:rgb(247,250,255)">(</span><span style="background-color:rgb(247,250,255); color:rgb(102,0,0)">$str3</span><span style="background-color:rgb(247,250,255)">,</span><span style="background-color:rgb(247,250,255); color:rgb(102,0,0)">$str4</span><span style="background-color:rgb(247,250,255)">);<br></span><span style="background-color:rgb(247,250,255); color:rgb(0,0,128)"><strong>echo </strong></span><span style="background-color:rgb(247,250,255)"><em>strcasecmp</em></span><span style="background-color:rgb(247,250,255)">(</span><span style="background-color:rgb(247,250,255); color:rgb(102,0,0)">$str3</span><span style="background-color:rgb(247,250,255)">,</span><span style="background-color:rgb(247,250,255); color:rgb(102,0,0)">$str4</span><span style="background-color:rgb(247,250,255)">);</span>

Le résultat en cours d'exécution est le suivant :

310

Comparer par naturel sorting

En PHP, la comparaison de chaînes selon la méthode de tri naturel est implémentée via la fonction strnatcmp(). La méthode de tri naturel compare la partie numérique de la chaîne et trie les nombres de la chaîne en fonction de leur taille.

La syntaxe est la suivante :

int strnatcmp(string str1,string str2)

La fonction strnatcmp() utilise un algorithme "naturel" pour comparer deux chaînes.

En arithmétique naturelle, le nombre 2 est inférieur au nombre 10. Dans le tri informatique, 10 est inférieur à 2 car le premier nombre de 10 est inférieur à 2.

<span style="background-color:rgb(255,228,255); color:rgb(102,0,0)">$str1</span><span style="background-color:rgb(247,250,255)">=</span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"str3.jpg"</strong></span><span style="background-color:rgb(247,250,255)">;<br></span><span style="background-color:rgb(247,250,255); color:rgb(102,0,0)">$str2</span><span style="background-color:rgb(247,250,255)">=</span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"str10.jpg"</strong></span><span style="background-color:rgb(247,250,255)">;<br></span><span style="background-color:rgb(247,250,255); color:rgb(0,0,128)"><strong>echo </strong></span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"</strong></span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0); font-family:宋体"><strong>按字节比较:</strong></span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"</strong></span><span style="background-color:rgb(247,250,255)">.</span><span style="background-color:rgb(247,250,255)"><em>strcmp</em></span><span style="background-color:rgb(247,250,255)">(</span><span style="background-color:rgb(228,228,255); color:rgb(102,0,0)">$str1</span><span style="background-color:rgb(247,250,255)">,</span><span style="background-color:rgb(247,250,255); color:rgb(102,0,0)">$str2</span><span style="background-color:rgb(247,250,255)">).</span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"0c6dc11e160d3b678d68754cc175188a"</strong></span><span style="background-color:rgb(247,250,255)">;<br></span><span style="background-color:rgb(247,250,255); color:rgb(0,0,128)"><strong>echo </strong></span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"</strong></span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0); font-family:宋体"><strong>按自然排序法比较:</strong></span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"</strong></span><span style="background-color:rgb(247,250,255)">.</span><span style="background-color:rgb(247,250,255)"><em>strnatcmp</em></span><span style="background-color:rgb(247,250,255)">(</span><span style="background-color:rgb(228,228,255); color:rgb(102,0,0)">$str1</span><span style="background-color:rgb(247,250,255)">,</span><span style="background-color:rgb(247,250,255); color:rgb(102,0,0)">$str2</span><span style="background-color:rgb(247,250,255)">).</span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"0c6dc11e160d3b678d68754cc175188a"</strong></span><span style="background-color:rgb(247,250,255)">;<br></span><span style="background-color:rgb(247,250,255); color:rgb(102,0,0)">$str3</span><span style="background-color:rgb(247,250,255)">=</span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"mrsoft1"</strong></span><span style="background-color:rgb(247,250,255)">;<br></span><span style="background-color:rgb(247,250,255); color:rgb(102,0,0)">$str4</span><span style="background-color:rgb(247,250,255)">=</span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"MRSOFT2"</strong></span><span style="background-color:rgb(247,250,255)">;<br></span><span style="background-color:rgb(247,250,255); color:rgb(0,0,128)"><strong>echo </strong></span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"</strong></span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0); font-family:宋体"><strong>按字节比较:</strong></span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"</strong></span><span style="background-color:rgb(247,250,255)">.</span><span style="background-color:rgb(247,250,255)"><em>strcmp</em></span><span style="background-color:rgb(247,250,255)">(</span><span style="background-color:rgb(247,250,255); color:rgb(102,0,0)">$str3</span><span style="background-color:rgb(247,250,255)">,</span><span style="background-color:rgb(247,250,255); color:rgb(102,0,0)">$str4</span><span style="background-color:rgb(247,250,255)">).</span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"0c6dc11e160d3b678d68754cc175188a"</strong></span><span style="background-color:rgb(247,250,255)">;<br></span><span style="background-color:rgb(247,250,255); color:rgb(0,0,128)"><strong>echo </strong></span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"</strong></span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0); font-family:宋体"><strong>按自然排序法比较:</strong></span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"</strong></span><span style="background-color:rgb(247,250,255)">.</span><span style="background-color:rgb(247,250,255)"><em>strnatcmp</em></span><span style="background-color:rgb(247,250,255)">(</span><span style="background-color:rgb(247,250,255); color:rgb(102,0,0)">$str3</span><span style="background-color:rgb(247,250,255)">,</span><span style="background-color:rgb(247,250,255); color:rgb(102,0,0)">$str4</span><span style="background-color:rgb(247,250,255)">).</span><span style="background-color:rgb(247,250,255); color:rgb(0,128,0)"><strong>"0c6dc11e160d3b678d68754cc175188a"</strong></span><span style="background-color:rgb(247,250,255)">;</span>

Le résultat de sortie est :

Comparer par octet : 1
Comparer par tri naturel : -1
Comparer par octet : 1
Par méthode de tri naturel comparaison : 1

$str1 = "mrsoft1";
$str2 = "MRSOFT2";
echo strnatcmp($str1,$str2); //1 因为 m 大于 M
$str1 = "mrsoft1";
$str2 = "mrsoft2";
echo strnatcmp($str1,$str2); //-1 这样才对
$str1 = "mrsoft11";
$str2 = "mrsoft2";
echo strnatcmp($str1,$str2); //1 这才是本意 11 大于 2

Remarque : lors de la comparaison selon le tri naturel, il existe une autre fonction strnatcasecmp() qui a la même fonction que la fonction strnatcmp(), mais n'est pas le cas- sensible

<span style="font-size: 20px; color: rgb(255, 0, 0);">指定从源字符串的位置比较</span><br>
<pre style="font-family:Consolas; font-size:12pt; background-color:rgb(255,255,255)">strncmp()函数用来比较字符串中的前n个字符,该函数区分大小写
语法如下:
int strncmp(string str1,string str2,int len)
参数str1规定要比较的首个字符串。参数str2规定要比较的第二个字符串。len(必需)规定比较中所用的每个字符串的字符数。
<span style="font-family:微软雅黑; font-size:14px">如果相等则返回0;如果参数str1大于str2则返回值大于0;</span><span style="font-family:微软雅黑; font-size:14px">如果参数str1小于str2则返回值小于0。</span><br>
例如:
运算结果为
-1

Conseil : Ceci. La fonction est la même que La fonction strcmp() est similaire, sauf que strcmp() Pas de paramètre longueur

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!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn