如何使用php删除字符串中的冒号和空格 时间:2020-01-13 作者:Brock_s34 如何通过php删除字符串中的冒号和空格。。e、 g:教父:第二部分 1 个回复 最合适的回答,由SO网友:Web Developer 整理而成 检查此代码:$demo_string = "The Godfather: Part II"; $demo_string = str_replace(\':\', \'\', $demo_string); $demo_string = str_replace(\' \', \'\', $demo_string); 输出:TheGodfatherPartII 文章导航