寫一個函數,將一個字符串(如:1234567890),轉換成(如1,234,567,890)每3位用逗號隔開的形式

function str($str){ //先反轉字符串 $new_str=strrev($str); //在用chunk_split函數將字符串用「 , 」 分割成小塊 $new_str= chunk_split($new_str,3,','); //去掉右邊的逗號,返回出去 return strrev(rtrim($new_str,','));
相關文章
相關標籤/搜索