gpt4 book ai didi

php - str_replace() 与关联数组

转载 作者:IT王子 更新时间:2023-10-28 23:46:12 26 4
gpt4 key购买 nike

您可以使用带有 str_replace() 的数组:

$array_from = array ('from1', 'from2'); 
$array_to = array ('to1', 'to2');

$text = str_replace ($array_from, $array_to, $text);

但是如果你有关联数组呢?

$array_from_to = array (
'from1' => 'to1';
'from2' => 'to2';
);

如何将它与 str_replace() 一起使用?
速度很重要——阵列足够大。

最佳答案

$text = strtr($text, $array_from_to)

顺便说一句,那仍然是一个一维“数组”。

关于php - str_replace() 与关联数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2399286/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com