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.
我需要删除字符串的第三个字符。这是我尝试过的。
$my_string['2'] = "";
这很有效,但是当我尝试将此变量放入 MySQL 查询中时,它返回了错误。 从字符串中删除某个字符(在我的情况下为字符 3)的最佳方法是什么?
试试substr_replace。
例如:
$new_string = substr_replace($my_string, '', 2, 1);
使用整数作为索引,而不是字符串:
$my_string[2] = '';