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


PHP Process::getVerboseLevel方法代码示例

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


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

示例1: switch

            echo $warnPrefix . 'Line ' . $args[0] . " is invalid. Incorrect column count.\n";
            break;
        case PROCESS_WARN_EMPTYPATH:
            echo $warnPrefix . 'Line ' . $args[0] . " is invalid. The path must be at least one character long.\n";
            break;
        case PROCESS_WARN_WRITEFAIL:
            echo $warnPrefix . "Failed to write '" . $args[0] . (isset($args[1]) ? "' for '" . $args[1] : '') . "'.\n";
            break;
    }
}
$processor->setSizeGroups($sizeGroups);
$processor->setModifiedGroups($modifiedGroups);
$processor->setEventCallback('EventHandler');
$ret = $processor->run();
$processor->dumpProfiles();
if ($ret != PROCESS_OK && $processor->getVerboseLevel() > PROCESS_VERBOSE_QUIET) {
    $details = $processor->getFailDetails();
    switch ($ret) {
        case PROCESS_FAIL_OPEN_FILELIST:
            echo "FAIL: The <filelist> could not be opened.\n";
            break;
        case PROCESS_FAIL_INVALID_REPORTDIR:
            echo "FAIL: The <reportdir> already exists and is not a directory.\n";
            break;
        case PROCESS_FAIL_INVALID_HEADER:
            echo "FAIL: The header line in the <filelist> is invalid:\n" . $details['line'] . "\n";
            break;
        case PROCESS_FAIL_REPORTDIR_PARENT:
            echo "FAIL: The parent directory of <reportdir> does not exist.\n";
            break;
        case PROCESS_FAIL_REPORTDIR_MKDIR:
开发者ID:awojtas,项目名称:diskusagereports,代码行数:31,代码来源:process.php

示例2: array

        case '-su':
            $processor->setSuffix($shifted = array_shift($cliargs));
        default:
            $processor->setReportDir($cliarg);
            $processor->setFileList(array_shift($cliargs));
            $cliargs = array();
    }
    // If we shifted and found nothing, output an error.
    if (is_null($shifted)) {
        echo "Missing value after argument {$cliarg}\n" . $syntax;
        exit(1);
    }
}
// Make sure the <reportdir> was set.
if (is_null($processor->getReportDir())) {
    if ($processor->getVerboseLevel() != PROCESS_VERBOSE_QUIET) {
        echo "<reportdir> argument is missing\n" . $syntax;
    }
    exit(1);
}
// Read the file list from STDIN if it was not specified.
if (is_null($processor->getFileList())) {
    $processor->setFileList('php://stdin');
} elseif (!is_file($processor->getFileList())) {
    if ($processor->getVerboseLevel() != PROCESS_VERBOSE_QUIET) {
        echo "The <filelist> '" . $processor->getFileList() . "' does not exist or is not a file.\n";
    }
    exit(1);
}
// Set the timezone.
if (!(function_exists("date_default_timezone_set") ? @date_default_timezone_set($args['timezone']) : @putenv("TZ=" . $args['timezone']))) {
开发者ID:rualatngua,项目名称:diskusagereports,代码行数:31,代码来源:process.php


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