How does PHP compare strings with comparison operators?

做~自己de王妃 提交于 2019-11-26 17:14:46

问题


I'm comparing strings with comparison operators.

I needs some short of explanations for the below two comparisons and their result.

if('ai' > 'i')
{
    echo 'Yes';
}
else
{
    echo 'No';
}

output: No

Why do these output this way?

if('ia' > 'i')
{
    echo 'Yes';
}
else
{
    echo 'No';
}

Output: Yes

Again, why?

Maybe I forgot some basics, but I really need some explanation of these comparison examples to understand this output.


回答1:


PHP will compare alpha strings using the greater than and less than comparison operators based upon alphabetical order.

  • In the first example, ai comes before i in alphabetical order so the test of > (greater than) is false - earlier in the order is considered 'less than' rather than 'greater than'.

  • In the second example, ia comes after i alphabetical order so the test of > (greater than) is true - later in the order being considered 'greater than'.




回答2:


To expand on @coderabbi's answer:

It is the same type of logic as when you order by number in some applications and get results like the following:

  • 0
  • 1
  • 105
  • 11
  • 2
  • 21
  • 3
  • 333
  • 34

It's not based on string length, but rather each character in order of the string.




回答3:


The < and > comparison operator in php will compare the first character of your string, then compare other characters that follows in the strings. Therefore, your first expression ai (first string) and i(second string) a is first character in the string compared with i as first character in the second string with > will return false, and subsequently the second statement will return true due to the same reason. However, if you really need to compare two longer string values with many characters, you may try using substr_compare method:

substr_compare("abcde", "bc", 1, 2);

in this sample, you have your two strings to be compared, 1 is the offset start position, and 2 represents how many characters you want to compare to the right of those strings. -1 will means the offset start from the end of the first string. e.g. do something like this:

substr_compare("string1", "string2", 0, length);

also, consider using strcmp() also i.e. strcmp("string1", "string2", length) where length is number of character you want to compare from the two strings.



来源:https://stackoverflow.com/questions/12888674/how-does-php-compare-strings-with-comparison-operators

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!