//过滤链接中Zero-width space
$link = str_replace("\xe2\x80\x8b", '', $link);
$link = str_replace("\xe2\x80\x8c", '', $link);
$link = str_replace("\xe2\x80\x8d", '', $link);
【php】过滤链接zero-width space
最新推荐文章于 2024-05-12 14:02:28 发布
//过滤链接中Zero-width space
$link = str_replace("\xe2\x80\x8b", '', $link);
$link = str_replace("\xe2\x80\x8c", '', $link);
$link = str_replace("\xe2\x80\x8d", '', $link);