标签: php
例如str1 = "hello world",str2 = "hello wordl",它们具有相同的长度,但不相同
str1 = "hello world"
str2 = "hello wordl"
答案 0 :(得分:3)
你可以使用levenshtein。
If (levenshtein($str1,$str2)===0){ // identical}
答案 1 :(得分:0)
是的,这是可能的。您可以使用strcmp进行字符串比较。