preg替换为scandic字母

时间:2016-06-03 23:10:52

标签: php preg-replace character

我有从文件中删除内容的功能,我无法使用scandic字符。

function strip($file_content) {

$match = array("/[^äÄöÖa-zA-Z0-9-+.,&=??????:;*'\"???\/\@\[\]\(\)\s]/","/((\x0D\x0A\s*){3,}|(\x0A\s*){3,}|(\x0D\s*){3,})/", "/\x0D\x0A|\x0A|\x0D/");
$replace = array("-", "<br />\n<br />\n", "<br />\n");
$file_content = preg_replace($match, $replace, trim($file_content));

return $file_content;
}

我回应网页上的内容:

$file = $_FILES['file']['tmp_name'];
echo strip(file_get_contents($file));

那么当我回显文件内容时,什么是让scandic字符工作的最佳解决方案? (ä-Ö)

0 个答案:

没有答案