我已經替換了逗號,使用str_replace()購買;以下是它的代碼在PHP中替換字符串
$result1 = mysql_query("SELECT * FROM table WHERE lc_status='Yes' ORDER BY file_no DESC");
$tmp=0;
$tmp1 = 0;
while($row=mysql_fetch_assoc($result1)){
$tmp +=str_replace(',','', $row['jpy_value']);
$tmp1 +=str_replace(',','',$row['lkr_value']);
現在我可以得到該列的總值。但總價值即將到來而沒有逗號。
例如:250000
如何將逗號替換回正常數字格式。 如果有人能幫助我,我會很高興
使用[number_format](http://php.net/manual/en/function.number-format.php) – Thamilan
'$ TMP + = INTVAL(str_replace函數( 「」, 「」,$行['jpy_value']));' –
您可以使用['NumberFormatter'](http://www.php.net/manual/en/class.numberformatter.php)獲得更清潔的解決方案http:// stackoverflow。 com/a/11026779/2290008 – nv1t