$str = "baidu.com";if (!preg_match('/^http:\/\//', $str)) { $str = "http://" . $str;}echo $str;
其实不用正则也可以,直接在网址前面加字串啊