检查字符串是否为 URL
我看过很多问题,但无法理解它是如何工作的,因为我想要一个更简单的案例。
如果我们有文本,无论它是什么,我想检查它是否是一个URL。
$text = "something.com"; //this is a url
if (!IsUrl($text)){
echo "No it is not url";
exit; // die well
}else{
echo "Yes it is url";
// my else codes goes
}
function IsUrl($url){
// ???
}
在JS被阻止的情况下,除了检查JavaScript之外,还有其他方法吗?