当前位置: 首页>>代码示例>>PHP>>正文


PHP Subnets::verify_subnet_overlapping方法代码示例

本文整理汇总了PHP中Subnets::verify_subnet_overlapping方法的典型用法代码示例。如果您正苦于以下问题:PHP Subnets::verify_subnet_overlapping方法的具体用法?PHP Subnets::verify_subnet_overlapping怎么用?PHP Subnets::verify_subnet_overlapping使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Subnets的用法示例。


在下文中一共展示了Subnets::verify_subnet_overlapping方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

 * action2 is Delete then change action
 */
if (isset($_POST['action2']) && $_POST['action2'] == "delete") {
    $_POST['action'] = $_POST['action2'];
}
/**
 *	If section changes then do checks!
 */
if ($_POST['sectionId'] != @$_POST['sectionIdNew'] && $_POST['action'] == "edit") {
    //reset masterId - we are putting it to root
    $_POST['masterSubnetId'] = 0;
    //check for overlapping
    $sectionIdNew = (array) $Sections->fetch_section(null, $_POST['sectionIdNew']);
    if ($sectionIdNew['strictMode'] == 1 && !$parent_is_folder) {
        /* verify that no overlapping occurs if we are adding root subnet */
        $overlap = $Subnets->verify_subnet_overlapping($_POST['sectionIdNew'], $_POST['cidr'], $_POST['vrfId']);
        if ($overlap !== false) {
            $errors[] = $overlap;
        }
    }
} else {
    if ($_POST['action'] == "add" && $_POST['masterSubnetId'] == 0) {
        //verify cidr
        $cidr_check = $Subnets->verify_cidr_address($_POST['cidr']);
        if (strlen($cidr_check) > 5) {
            $errors[] = $cidr_check;
        }
        //check for overlapping
        if ($section['strictMode'] == 1 && !$parent_is_folder) {
            /* verify that no overlapping occurs if we are adding root subnet
                  only check for overlapping if vrf is empty or not exists!
开发者ID:jselan,项目名称:phpipam,代码行数:31,代码来源:edit-result.php

示例2: explode

    $m = str_replace("subnet-", "", $subnet);
    //reformat subnet
    $_temp = explode("/", $_POST['subnet-' . $m]);
    //set subnet details for importing
    $subnet_import['subnet'] = $Subnets->transform_to_decimal($_temp[0]);
    $subnet_import['mask'] = $_temp[1];
    $subnet_import['sectionId'] = $_POST['section-' . $m];
    $subnet_import['description'] = $_POST['description-' . $m];
    $subnet_import['vlanId'] = $_POST['vlan-' . $m];
    $subnet_import['vrfId'] = $_POST['vrf-' . $m];
    $subnet_import['showName'] = $_POST['showName-' . $m];
    //cidr
    if (strlen($err = $Subnets->verify_cidr($Subnets->transform_to_dotted($subnet_import['subnet']) . "/" . $subnet_import['mask'])) > 5) {
        $errors[] = $err;
    } else {
        if (strlen($err = $Subnets->verify_subnet_overlapping($subnet_import['sectionId'], $Subnets->transform_to_dotted($subnet_import['subnet']) . "/" . $subnet_import['mask'], $subnet_import['vrfId'])) > 5) {
            $errors[] = $err;
        } else {
            $subnets_to_insert[] = $subnet_import;
        }
    }
}
# print errors if they exist or success
if (isset($errors)) {
    print '<div class="alert alert-danger alert-absolute">' . _('Please fix the following errors before inserting') . ':<hr>' . "\n";
    foreach ($errors as $line) {
        print $line . '<br>';
    }
    print '</div>';
} else {
    $errors_import_failed = 0;
开发者ID:martinsv,项目名称:phpipam,代码行数:31,代码来源:import-subnets.php


注:本文中的Subnets::verify_subnet_overlapping方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。