我需要幫助更換如google.com的鏈接進入http://www.google.comPHP的preg_replace幫助
$url = preg_replace("/([^\w\/])(www\.[a-z0-9\-]+\.[a-z0-9\-]+)/i", "$1http://$2",$url);
$output = htmlspecialchars(urldecode($url));
我使用的iframe,如:
<iframe src='$url'></iframe>
但是,如果src =「google.com 「而不是」http://google.com「它不起作用。那麼,我如何才能將google.com轉換爲http://www.google.com?