如何使用PHP验证Vine URL并允许HTTP或HTTPS



如何更改它以允许 Vine URL 的 HTTP 或 HTTPS?

$vineURL = 'https://vine.co/v/';
$pos = stripos($url_input_value, $vineURL);
if ($pos === 0) {
    echo "The url '$url' is a vine URL";
}
else {
    echo "The url '$url' is not a vine URL";
}
您可以使用

parse_url函数,它将URL分解为其组件,从而更轻松地单独匹配每个组件:

var_dump(parse_url("https://vine.co/v/"));
// array(3) {
//   ["scheme"]=>
//   string(4) "http"
//   ["host"]=>
//   string(7) "vine.co"
//   ["path"]=>
//   string(3) "/v/"
// }

然后,您可以检查schemehostpath是否匹配:

function checkVineURL($url) {
    $urlpart = parse_url($url);
    if($urlpart["scheme"] === "http" || $urlpart["scheme"] === "https") {
        if($urlpart["host"] === "vine.co" || $urlpart["host"] === "www.vine.co") {
            if(strpos($urlpart["path"], "/v/") === 0) {
                return true;
            }
        }
    }
    return false;
}
checkVineURL("https://vine.co/v/");     // true
checkVineURL("http://vine.co/v/");      // true
checkVineURL("https://www.vine.co/v/"); // true
checkVineURL("http://www.vine.co/v/");  // true
checkVineURL("ftp://vine.co/v/");       // false
checkVineURL("http://vine1.co/v/");     // false
checkVineURL("http://vine.co/v1/");     // false

只需取出"https://"并稍微更改一下您的if语句...喜欢这个:

$vineURL = 'vine.co/v/';
if(stripos($user_input_value, $vineURL) !== false) {
    echo "This is a vine URL";
} else {
    echo "This is not a vine URL";
}

像这样的用户正则表达式

if (preg_match("/^http(s)?://(www.)?vine.co/v//", $url)) {
    echo "This is a vine URL";
} else {
    echo "This is not a vine URL";
}

相关内容

  • 没有找到相关文章

最新更新