2013-10-15 180 views

回答

1

您可以使用字符串替換,str_replacepreg_replace是可行的解決方案。

$string = str_replace(",","","185,345,321"); 

PHP 應該照顧類型轉換之後,所以你對付一個整數。

2

您可以通過執行

$newString = str_replace(",", "", $integerString); 

然後

$myNewInt = intval($newString); 
1
$str = "185,345,321"; 
$newstr = str_replace(',','',$str); 
echo $newstr; 
5

是的,有可能擺脫逗號:

$str = "185,345,321"; 
$newStr = str_replace(',', '', $str); //If you want it to be "185345321" 
$num = intval(@newStr); //If you want it to be a number 185345321 
2
$string= "185,345,321"; 
echo str_replace(",","",$string); 
4

釷是可以逐個

$intV = intval(str_replace(",","","185,345,321")); 

這裏intval()可以實現用於將字符串轉換爲整數。

相關問題