代碼如下:

$url = 'https://www.baidu.com/';
if(preg_match('/^http(s)?://.+/',$url))
{
    echo '帶';
}else
{
    echo '不帶';
}