Home > Article > Backend Development > How to remove a certain character in php
How to remove a certain character in php: 1. Use the "str_replace("123", "", $str);" method to delete the specified string; 2. Use "preg_replace("#abc#i ", "", $str);" method removes specified characters.
Recommended: "PHP Video Tutorial"
You can use the str_replace function or preg_replace function to replace the specified string with Empty, that is to say, delete the specified string:
<?php $str = 'a123abc112233aaccdd321123abcd'; echo str_replace("123", "", $str); //输出:aabc112233aaccdd321abcd a123112233/aiezu.com/aaccdd321123d $str = 'a123abc112233/aiezu.com/aaccdd321123abcd'; echo preg_replace("#abc#i", "", $str); //输出:a123112233/aiezu.com/aaccdd321123d
The above is the detailed content of How to remove a certain character in php. For more information, please follow other related articles on the PHP Chinese website!