本文目录一览:
php中反转字符串方法?
strrev
(PHP 4, PHP 5, PHP 7)
strrev — 反转字符串
说明
strrev ( string $string ) : string
返回 string 反转后的字符串。
参数
string
待反转的原始字符串。
返回值
返回反转后的字符串。
范例
Example #1 使用 strrev() 反转字符串
add a note add a note
User Contributed Notes 4 notes
6 info at ensostudio dot ru ¶3 months ago
It's faster and flexible than tianyiw function (comment #122953)
php 字符串倒叙 单词正序
先要划分单词,可以使用preg_split使用\b分段,然后倒序组装我使用的foreach,程序如下:
?php
function rev($s){
$s2='';
foreach (preg_split('/\b/',$s) as $a) $s2=$a.$s2;
return $s2;
}
echo rev(' I am a boy@, how are you?!');
?
php中字符串如何反转输出
?php
$str="abcd";
$len=strlen($str);
$i = $len;
while ($i 0) {
$i=$i-1;
echo substr($str, $i, 1);
}
?
这样可以不?还是要写成fuction的形式?