gpt4 book ai didi

带有限制参数的 PHP str_replace()?

转载 作者:可可西里 更新时间:2023-10-31 23:05:12 25 4
gpt4 key购买 nike

str_replace 用替换词替换所有出现的单词。

preg_replace 用替换项替换模式的出现,并采用可选的限制参数。

我不需要任何模式匹配,但想要限制参数的便利性。我应该使用什么?

最佳答案

有更好的方法来做到这一点

<?
$str = 'abcdef abcdef abcdef';
// pattern, replacement, string, limit
echo preg_replace('/abc/', '123', $str, 1); // outputs '123def abcdef abcdef'
?>

关于带有限制参数的 PHP str_replace()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8510223/

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