如何在 str_replace() 函数中使用数组?

问题描述 投票:0回答:1

我想做的就是删除所有

<space>
(空格),
-
(破折号),
,
(逗号)。这是我的代码:-

$str = "fwepoki3-4,32de e34d";
$res = str_replace(",", "", str_replace("-", "", str_replace(" ", "", $str)));

php 中还有另一个函数或者更好的想法吗?

php replace
1个回答
9
投票

您可以通过传递数组作为第一个参数来做到这一点:

$res = str_replace(array(' ', '-', ','), '', $str);

str_replace() PHP 的函数让你选择是否三个 参数将是单个值或数组。

© www.soinside.com 2019 - 2024. All rights reserved.