本文整理汇总了PHP中CLI::getParam方法的典型用法代码示例。如果您正苦于以下问题:PHP CLI::getParam方法的具体用法?PHP CLI::getParam怎么用?PHP CLI::getParam使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CLI
的用法示例。
在下文中一共展示了CLI::getParam方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$metadata = true;
$outDir = "";
$outFile = "";
$play = false;
$quiet = false;
$referrer = "";
$rename = false;
$showHeader = true;
$start = 0;
$update = false;
$options = array(0 => array('help' => 'displays this help', 'debug' => 'show debug output', 'delete' => 'delete fragments after processing', 'fproxy' => 'force proxy for downloading of fragments', 'play' => 'dump stream to stdout for piping to media player', 'rename' => 'rename fragments sequentially before processing', 'update' => 'update the script to current git version'), 1 => array('auth' => 'authentication string for fragment requests', 'duration' => 'stop recording after specified number of seconds', 'filesize' => 'split output file in chunks of specified size (MB)', 'fragments' => 'base filename for fragments', 'fixwindow' => 'timestamp gap between frames to consider as timeshift', 'manifest' => 'manifest file for downloading of fragments', 'maxspeed' => 'maximum bandwidth consumption (KB) for fragment downloading', 'outdir' => 'destination folder for output file', 'outfile' => 'filename to use for output file', 'parallel' => 'number of fragments to download simultaneously', 'proxy' => 'proxy for downloading of manifest', 'quality' => 'selected quality level (low|medium|high) or exact bitrate', 'referrer' => 'Referer to use for emulation of browser requests', 'start' => 'start from specified fragment', 'useragent' => 'User-Agent to use for emulation of browser requests'));
$cli = new CLI($options, true);
// Set large enough memory limit
ini_set("memory_limit", "512M");
// Check if STDOUT is available
if ($cli->getParam('play')) {
$play = true;
$quiet = true;
$showHeader = false;
}
if ($cli->getParam('help')) {
$cli->displayHelp();
exit(0);
}
// Check for required extensions
$required_extensions = array("bcmath", "curl", "SimpleXML");
$missing_extensions = array_diff($required_extensions, get_loaded_extensions());
if ($missing_extensions) {
$msg = "You have to install the following extension(s) to continue: '" . implode("', '", $missing_extensions) . "'";
LogError($msg);
}
示例2: ShowHeader
}
function ShowHeader()
{
$header = "KSV WeebTV Downloader";
$len = strlen($header);
$width = floor((80 - $len) / 2) + $len;
$format = "\n%" . $width . "s\n\n";
printf($format, $header);
}
// Global code starts here
$format = "%-8s: %s";
$ChannelFormat = "%2d) %-22.21s";
$quiet = false;
$options = array(0 => array('help' => 'displays this help', 'list' => 'display formatted channels list and exit', 'print' => 'only print the base rtmpdump command, don\'t start anything', 'quiet' => 'disables unnecessary output'), 1 => array('proxy' => 'use proxy to retrieve channel information', 'url' => 'use specified url without displaying channels list'));
$cli = new CLI($options);
if ($cli->getParam('quiet')) {
$quiet = true;
}
if (!$quiet) {
ShowHeader();
}
$windows = strncasecmp(php_uname('s'), "Win", 3) == 0 ? true : false;
if ($windows) {
exec("chcp 65001");
if (file_exists("C:\\Program Files (x86)\\VideoLAN\\VLC\\vlc.exe")) {
$vlc = "C:\\Program Files (x86)\\VideoLAN\\VLC\\vlc.exe";
} else {
$vlc = "C:\\Program Files\\VideoLAN\\VLC\\vlc.exe";
}
} else {
$vlc = "vlc";
示例3: fwrite
fwrite($flv, $flvHeader, $flvHeaderLen);
return $flv;
}
// Global code starts here
$avcCfgW = false;
$aacCfgW = false;
$beatFile = "";
$debug = false;
$flv = "";
$flvData = "";
$outFile = "";
$showHeader = true;
$options = array(0 => array('help' => 'displays this help', 'debug' => 'show debug output'), 1 => array('infile' => 'input beat file to convert', 'outfile' => 'filename to use for output file'));
$cli = new CLI($options, true);
// Process command line options
if ($cli->getParam('help')) {
$cli->displayHelp();
exit(0);
}
if (isset($cli->params['unknown'])) {
$beatFile = $cli->params['unknown'][0];
}
if ($cli->getParam('debug')) {
$debug = true;
}
if ($cli->getParam('infile')) {
$beatFile = $cli->getParam('infile');
}
if ($cli->getParam('outfile')) {
$outFile = $cli->getParam('outfile');
}
示例4: array
$baseTS = INVALID_TIMESTAMP;
$negTS = INVALID_TIMESTAMP;
$prevAudioTS = INVALID_TIMESTAMP;
$prevVideoTS = INVALID_TIMESTAMP;
$pAudioTagLen = 0;
$pVideoTagLen = 0;
$pAudioTagPos = 0;
$pVideoTagPos = 0;
$prevAVC_Header = false;
$prevAAC_Header = false;
$AVC_HeaderWritten = false;
$AAC_HeaderWritten = false;
ShowHeader();
$options = array(0 => array('help' => 'displays this help', 'debug' => 'show debug output', 'nometa' => 'do not save metadata in repaired file'), 1 => array('fixwindow' => 'timestamp gap between frames to consider as timeshift', 'in' => 'input filename of flv file to be repaired', 'out' => 'output filename for repaired file'));
$cli = new CLI($options);
if ($cli->getParam('help')) {
$cli->displayHelp();
exit(0);
}
if ($cli->getParam('debug')) {
$debug = true;
}
if ($cli->getParam('nometa')) {
$metadata = false;
}
if ($cli->getParam('fixwindow')) {
$fixWindow = $cli->getParam('fixwindow');
}
if ($cli->getParam('in')) {
$in = $cli->getParam('in');
} else {