php处理字符串
程序员文章站
2022-05-21 12:57:18
...
1、获取字符串长度
$str = 'abc';
$str1='中文';
echo strlen($str),'
',strlen($str1);
输出结果:
36
2、查找字符串
//查找字符串首次出现的位置
$char = 'a';
$str = 'abc';
$bRet = strpos($str,$char);
if($bRet === false)
{
echo"$str 中不含有$char ";
}else
{
echo"$str 中含有$char ";
}
echo'
';
输出结果:
abc 中含有a
3、替换字符串
//替换字符串str_replace()$str = 'Good morning';
$str1 = str_replace('moring','afternoon',$str);
echo$str, '
', $str1;
输出结果:
Good morning
Good morning
//替换字符串strtr()$str = '上车,上课,上班,下车,下课,下班';
$str1 = strtr($str,['上'=>'下','下'=>'上']);
echo$str,'
',$str1;
输出结果:
上车,上课,上班,下车,下课,下班
下车,下课,下班,上车,上课,上班
4、截取字符串
//截取字符串substr(),参数分别为目标字符串,起始位置,截取长度$str = 'East,west,home is best';
echo$str,'
',substr($str,0,4);
输出结果:
East,west,home is best
East
5、拆分字符串
//拆分字符串explode()$str = '厨子, 戏子, 痞子';
$arr = explode(',',$str);
echo$str,'
';
print_r($arr);
输出结果:
厨子, 戏子, 痞子
Array ( [0] => 厨子 [1] => 戏子 [2] => 痞子 )
6、数组合并为字符串
$arr=['0'=>'厨子','1'=>'戏子','2'=>'痞子'];
$str=implode($arr,';');
print_r($arr);
echo'
';
echo$str;
输出结果:
Array ( [0] => 厨子 [1] => 戏子 [2] => 痞子 )
厨子;戏子;痞子
').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i ').text(i));
};
$numbering.fadeIn(1700);
});
});
以上就介绍了php处理字符串,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
上一篇: php 禁止页面缓存输出