本文整理汇总了PHP中pts_client::program_requirement_checks方法的典型用法代码示例。如果您正苦于以下问题:PHP pts_client::program_requirement_checks方法的具体用法?PHP pts_client::program_requirement_checks怎么用?PHP pts_client::program_requirement_checks使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pts_client
的用法示例。
在下文中一共展示了pts_client::program_requirement_checks方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setlocale
}
}
require PTS_PATH . 'pts-core/pts-core.php';
if (!PTS_IS_CLIENT) {
// pts-core is acting as a library, return now since no need to run client code
return;
}
// Default to C locale
setlocale(LC_ALL, 'C');
// Needed for shutdown functions
// declare(ticks = 1);
$sent_command = strtolower(str_replace('-', '_', isset($argv[1]) ? $argv[1] : null));
$quick_start_options = array('dump_possible_options');
pts_define('QUICK_START', in_array($sent_command, $quick_start_options));
if (QUICK_START == false) {
pts_client::program_requirement_checks(true);
}
pts_client::init();
// Initalize the Phoronix Test Suite (pts-core) client
$pass_args = array();
if (is_file(PTS_PATH . 'pts-core/commands/' . $sent_command . '.php') == false) {
$replaced = false;
if (pts_module::valid_run_command($sent_command)) {
$replaced = true;
} else {
if (isset($argv[1]) && strpos($argv[1], '.openbenchmarking') !== false && is_readable($argv[1])) {
$sent_command = 'openbenchmarking_launcher';
$argv[2] = $argv[1];
$argc = 3;
$replaced = true;
} else {