本文整理汇总了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:
示例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']))) {