Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$string=apple $add=£ $new=app£le
我在字符串中插入字符时遇到问题。
如果我是你,我会在所需的点将字符串分成两部分,然后将它与添加的新字符连接在一起。
我会提供更多详细信息,但我不知道您的预期拆分规则是什么。
$string='apple'; $add='£'; $new=substr_replace($string,$add,3,0); echo $new;