我有價格價值,其中前面有英鎊符號。我需要刪除該標誌。PHP刪除英鎊符號(£)從價格
$price = '£3.76' (This comes from database and is stored as a string within the database)
1) preg_replace('/[\£]/', '', $price);
2) ltrim($price, '£');
3) str_replace(utf8_decode("£"),"",utf8_decode($price));
4) str_replace('£', '', $price);
我試圖使用一切,但沒有任何工作。 1和4用Â替代,2和3在值的左邊添加Â。有人可以幫幫我嗎。
以上哪個命令會產生您所看到的輸出?請將包含價格值的完整字符串作爲示例發佈,以便我們有一個真實世界的示例來幫助您。 – nvisser
我現在編輯了這個問題,請讓我知道現在是否更清楚。 – user4676307
如果您在瀏覽器中看到'',這是因爲服務器發送的內容類型字符編碼不正確。你可以添加'header('Content-type:text/html; charset = utf-8');'給你的腳本正確地看到井號。但'$ price = str_replace('£','',$ price);'對我來說可以很好地移除它。 – drew010