本文整理匯總了PHP中Zone::subExists方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zone::subExists方法的具體用法?PHP Zone::subExists怎麽用?PHP Zone::subExists使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zone
的用法示例。
在下文中一共展示了Zone::subExists方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: sprintf
if (!$localerror) {
if (!checkZone($zonenamenew)) {
$localerror = 1;
$content .= sprintf($html->string_error, sprintf($l['str_bad_zone_name_x'], $zonenamenew)) . '<br>';
if ($zonenamenew != idn_to_ascii($zonenamenew)) {
$content .= sprintf($html->fontred, sprintf($l['str_bad_zone_name_idn_x'], idn_to_ascii($zonenamenew))) . '<br>';
}
} else {
if (preg_match("/^(.*)\\.\$/", $zonenamenew, $newzonename)) {
$zonenamenew = $newzonename[1];
}
$newzone = new Zone('', '');
if ($config->usergroups) {
// if usergroups, zone is owned by
// group and not individuals
$list = $newzone->subExists($zonenamenew, $group->groupid);
} else {
$list = $newzone->subExists($zonenamenew, $user->userid);
}
if ($list == 0) {
$localerror = 1;
$content .= sprintf($html->string_error, $newzone->error) . '<br>';
} else {
if (count($list) != 0) {
if (count($list) == 1) {
$toprint = $l['str_zone_linked_exists_and_not_manageable'] . '<br> ';
} else {
$toprint = $l['str_zones_linked_exist_and_not_manageable'] . '<br> ';
}
if (count($list) < 10) {
$toprint .= implode("<br>", $list) . '<br>';