gpt4 book ai didi

php - 如何用php替换子字符串,无论它是小字符还是大字符

转载 作者:可可西里 更新时间:2023-10-31 22:53:29 24 4
gpt4 key购买 nike

无论这个字符串是大写还是小写,我都需要替换子字符串

$sub = "STR";
$newsub="All-";
$str="Strstring";
$newstr=str_replace($sub,$rep,$str);

最佳答案

你可以使用PHP的str_ireplace函数作为

$sub = "STR";
$newsub="All-";
$str="Strstring";
$newstr=str_ireplace($sub,$newsub,$str);

Fiddle

关于php - 如何用php替换子字符串,无论它是小字符还是大字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30910756/

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