phpCopy<?php
$mainstr = "This is a sim'ple text;";
echo "Text before remove:
" . $mainstr, "
";
$replacestr = remove_sp_chr($mainstr);
function remove_sp_chr($str)
{
$result = str_replace(array("#", "'", ";"), '', $str);
echo "
Text after remove:
" . $result;
}
?>