① php比较相似字符串的方法
本文实例讲述了php比较相似字符串的方法。分享给大家供大家参考。具体分析如下:
这里通过php的similar_text函数比较两个字符串的相似性。
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
$word2compare
=
stupid;
$words
=
array(
'stupid',
'stu
and
pid',
'hello',
'foobar',
'stpid',
'upid',
'stuuupid',
'sstuuupiiid',
);
while(list($id,
$str)
=
each($words)){
similar_text($str,
$word2compare,
$percent);
print
Comparing
'$word2compare'
with
'$str':
;
print
round($percent)
.
%n;
}
/*
Results:
Comparing
'stupid'
with
'stupid':
100%
Comparing
'stupid'
with
'stu
and
pid':
71%
Comparing
'stupid'
with
'hello':
0%
Comparing
'stupid'
with
'foobar':
0%
Comparing
'stupid'
with
'stpid':
91%
Comparing
'stupid'
with
'upid':
80%
Comparing
'stupid'
with
'stuuupid':
86%
Comparing
'stupid'
with
'sstuuupiiid':
71%
*/
希望本文所述对大家的php程序设计有所帮助。
② php判断字符串是否相等
php简单判断两个字符串是否相等的方法
具体实现方法如下:
<?php
functionstrcomp($str1,$str2){
if($str1==$str2){
returnTRUE;
}else{
returnFALSE;
}
}
echostrcomp("Firststring","Secondstring");
//ReturnsFALSE
echostrcomp("Astring","Astring");
//ReturnsTRUE
?>
③ php 如何比较两个中文字符串是否相等
普通比较用==类型和字符都比较用=== 即全等 比如 1和true用===比较的话就是不相等,用==比较的话就是相等的(前者是int型后者是bool型)1和"1"用===比较的话就是不相等,用==比较的话就相等(前者是int型,后者是str型)另:abc和Abc用==比较是不相等的.如果你在比较时出现另一个比较对像有可能大写时,可以用strtolower把那个可能出现大写的字符串转成全小写的再比较.
④ php如何对比字符串内容
PHP中,可以用双等号(==)或 三等号(===)来比较字符串。
二者的区别是:双等号不比较类型,三等号会比较类型,但不转换类型;用双等号进行比较时,如果等号左右两边有数字类型的值,刚会把另一个值转化为数字,然后进行比较。如果是纯字符串或者NULL时,会转化为0进行比较。同样,大小于号也和等号一样,比较时可能出现不正确的结果。
综上所述,比较字符串可以用PHP的自带函数strcmp和strcasecmp。其中strcasecmp是strcmp的变种,它会先把字符串转化为小写再进行比较。 如下代码:
var_mp(0 == 'Test');
var_mp(0 == '');
var_mp(5 > 'T');
var_mp(strcmp(5, 'T'));
结果为(第1~3结果是不对的,只有第4个是对的)代码如下:
bool(true)
bool(true)
bool(true)
int(-1)
⑤ PHP语言中如何比较两个字符串完全相等
== 判断字符串相等应该可以呀。
== 对于这个 0 和 ''是相等的,因为他们是false.
=== 这个是绝对的等于。 你试试、
⑥ php 多个字符串比较是否相同
用explode把你的字符串分割为数组,然后对数组排序,最后把排序后的数组用implode合并为字符串,这时候比较的结果就是你需要的。
处理以上过程的例子代码:
<?php
$str1='F002,F001';
$arr=explode(',',$str1);
sort($arr);
$new1=implode($arr,',');
echo$new1;
?>