programming-examples/php/String/PHP script to replace multiple characters from the following string..php
2019-11-15 12:59:38 +01:00

4 lines
107 B
PHP

<?php
$my_str = '\"\1+2/3*2:2-3/4*3';
echo str_replace(str_split('\\/:*?"<>|+-'), ' ', $my_str)."\n";
?>