列印字串的第一個字元
$a='abcdr';
echo substr($a,0,1);
echo $a[0];
如何實現字串反轉
$str='abcde';
function reu($str){
$len=-strlen($str);
for($new='',$start=-1;$start>=$len;$start--){
$new.=substr($str,$start,1);
}
return $new;
}
echo reu($str),'<br>';
echo strrev($str);
將 1234567 轉成 1,234,567
$str=1234567;
function t1($str){
$str=strrev($str);
$res=strrev(chunk_split($str,3,','));
return $res;
}
var_dump(t1($str));
function t2($str){
$str=str_split(strrev($str),3);
$res=strrev(implode(',',$str));
return $res;
}
var_dump(t2($str));
echo number_format($str);
獲取檔案的字尾名
$file='abc.exce.jpg';
echo strchr($file,'.').'<br>';
echo strrev(strstr(strrev($file),'.',true));
echo substr($file,strrops($file,'.'));
echo pathinfo($file,PATHINFO_EXTENSION);
本作品採用《CC 協議》,轉載必須註明作者和本文連結
✍️部落格文章皆為網路收藏整理,作書籤使用,方便後期查閱。