本文整理匯總了PHP中sotf_Utils::is_valid_URL方法的典型用法代碼示例。如果您正苦於以下問題:PHP sotf_Utils::is_valid_URL方法的具體用法?PHP sotf_Utils::is_valid_URL怎麽用?PHP sotf_Utils::is_valid_URL使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類sotf_Utils
的用法示例。
在下文中一共展示了sotf_Utils::is_valid_URL方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: setWithUrlParam
/** similar to setWithParam, but parameter should be an URL here */
function setWithUrlParam($prop_name, $param_name = '')
{
global $page;
if (!$param_name) {
$param_name = $prop_name;
}
$url = sotf_Utils::getParameter($param_name);
if ($url != 'http://') {
if (sotf_Utils::is_valid_URL($url)) {
$this->set($prop_name, $url);
return true;
} else {
$page->addStatusMsg("invalid_url");
return false;
}
}
return true;
}
示例2:
$page->redirect("editContact.php?id={$contactId}#icon");
exit;
}
// save general data
if ($save || $finish1 || $finish2) {
if (!$finish2) {
$contact->set('alias', sotf_Utils::getParameter('alias'));
$contact->set('acronym', sotf_Utils::getParameter('acronym'));
$contact->set('intro', sotf_Utils::getParameter('intro'));
$contact->set('email', sotf_Utils::getParameter('email'));
$contact->set('address', sotf_Utils::getParameter('address'));
$contact->set('phone', sotf_Utils::getParameter('phone'));
$contact->set('cellphone', sotf_Utils::getParameter('cellphone'));
$contact->set('fax', sotf_Utils::getParameter('fax'));
$url = sotf_Utils::getParameter('url');
if (sotf_Utils::is_valid_URL($url)) {
$contact->set('url', $url);
} else {
$error = 1;
$page->addStatusMsg("invalid-url");
}
$contact->update();
}
if ($save || $error) {
$page->redirect("editContact.php?id={$contactId}");
} else {
$page->redirect("closeAndRefresh.php?anchor=roles");
}
exit;
}
$seticon = sotf_Utils::getParameter('seticon');