str_replace包含2个其他字符的字符

时间:2015-10-29 15:25:47

标签: php str-replace

我正在尝试将,替换为.,将'替换为“

我可以这样做

$bodyweight = str_replace("'", "`", $form->data['bodyweight']);
$bodyweight = str_replace(',', '.', $bodyweight);

是否可以在一个str_replace中执行此操作?

1 个答案:

答案 0 :(得分:0)

请阅读documentation

$bodyweight = str_replace(array("'", ','), array("`", '.'), $form->data['bodyweight']);