Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发 OScommerce 中的一个电子商务项目,我必须在其中实现谷歌跟踪,谷歌不允许在其方法中使用货币符号作为参数的产品价格。但是在我的付款成功页面上,我得到了带有货币符号的产品价格。那么,有什么方法可以从产品价格中提取数值。
尝试:
$price_no_curr = preg_replace ( '#\D*?(\d+(\.\d+)?)\D*#', '$1', $price);