时间:2021-07-01 10:21:17 帮助过:19人阅读
$content= preg_replace_callback('#(?:https?://\S+)|(?:www.\S+)|(?:\S+\.\S+)#', function($arr) { if(strpos($arr[0], 'http://') !== 0) { $arr[0] = 'http://' . $arr[0]; } $url = parse_url($arr[0]); //links return sprintf('%1$s', $arr[0]); }, $content);
?考: http://blog.baiwand.com/?post=150
参考: http://blog.baiwand.com/?post=150
感谢