我正在尝试将,
替换为.
,将'
替换为“
我可以这样做
$bodyweight = str_replace("'", "`", $form->data['bodyweight']);
$bodyweight = str_replace(',', '.', $bodyweight);
是否可以在一个str_replace中执行此操作?
答案 0 :(得分:0)
请阅读documentation:
$bodyweight = str_replace(array("'", ','), array("`", '.'), $form->data['bodyweight']);