Last active
July 24, 2018 08:41
-
-
Save artemsites/9780dc3f2cee70f6d903d8a60afb3435 to your computer and use it in GitHub Desktop.
Замена любых символов в строке на любые другие
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Замена любых символов в строке на любые другие | |
* | |
* @param [string] $string - входная строка | |
* @param [string] $a - что поменять | |
* @param [string] $b - на что поменять | |
* @return string - строка с замененными символами | |
*/ | |
function simbols_to_simbols($string, $a, $b) { | |
$array = explode($a, $string); | |
return implode($b, $array); | |
} | |
$string = "Я смотрю ты за себя взялся, курить бросил, по утрам бегаешь... Никак до пенсии решил дожить?"; | |
echo simbols_to_simbols($string, " ", "_"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment