Skip to content

Instantly share code, notes, and snippets.

@artemsites
Last active July 24, 2018 08:41
Show Gist options
  • Save artemsites/9780dc3f2cee70f6d903d8a60afb3435 to your computer and use it in GitHub Desktop.
Save artemsites/9780dc3f2cee70f6d903d8a60afb3435 to your computer and use it in GitHub Desktop.
Замена любых символов в строке на любые другие
/**
* Замена любых символов в строке на любые другие
*
* @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