时间:2021-07-01 10:21:17 帮助过:54人阅读
字符串:$str = "abcdefg";
方法一(直接使用php自带函数strrev($str))
print_r(strrev($str));
使用for循环方式,str_split($str)
$newArrOne = [];//初始化一个新的数组 $newStrOne = '';//初始化一个新的字符串 $newArrOne = str_split($str); $arrCount = count($newArrOne); for ($i=0; $i < $arrCount; $i++) { $newStrOne.=$newArrOne[$i]; } echo "<pre>"; print_r($newStrOne); echo "</pre>";
使用for循环方式,strlen($substr)
$newStrTwo = '';//初始化一个新的字符串 $arrCountTwo = strlen($str); for ($i=1; $i <= $arrCountTwo; $i++) { $newStrTwo.=substr($str, -$i, 1); } echo "<pre>"; print_r($newStrTwo)."\n"; echo "</pre>";
使用for循环方式,strlen($substr)
$newStrThree = '';//初始化一个新的字符串 $arrCountThree = strlen($str); for ($i = $arrCountThree; $i>=0;$i--) { @$newStrThree.=$str[$i]; } echo "<pre>"; print_r($newStrThree)."\n"; echo "</pre>";
相关推荐:
PHP实现字符串翻转功能的方法
php实现字符串匹配算法之sunday算法的示例
以上就是php中实现字符串翻转的方法的详细内容,更多请关注Gxl网其它相关文章!