我的价格值在它前面有英镑符号。我需要删除该标志。
$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添加Â值的左侧。有人可以帮助我。
答案 0 :(得分:0)
我遇到了类似的情况。请尝试以下代码:
$amount = "$500";
echo substr($amount,1,strlen($amount)); // returns "500"