如何更改重写此代码以使用preg_replace_callback

时间:2017-09-26 00:18:12

标签: regex preg-replace preg-replace-callback

返回preg_replace(' / [\ xC0- \ xF7] [\ x80- \ xBF] / e',' mb2entity(" \ 0")&#39 ;,$ str);

1 个答案:

答案 0 :(得分:0)

return preg_replace_callback('/[\xC0-\xF7][\x80-\xBF]/', function($n1) { return mb2entity($n1); }, $str);