本文整理汇总了PHP中PHP_CodeSniffer::realpath方法的典型用法代码示例。如果您正苦于以下问题:PHP PHP_CodeSniffer::realpath方法的具体用法?PHP PHP_CodeSniffer::realpath怎么用?PHP PHP_CodeSniffer::realpath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHP_CodeSniffer
的用法示例。
在下文中一共展示了PHP_CodeSniffer::realpath方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: processUnknownArgument
/**
* Processes an unknown command line argument.
*
* Assumes all unknown arguments are files and folders to check.
*
* @param string $arg The command line argument.
* @param int $pos The position of the argument on the command line.
*
* @return void
*/
public function processUnknownArgument($arg, $pos)
{
$file = PHP_CodeSniffer::realpath($arg);
if (file_exists($file) === false) {
if ($this->dieOnUnknownArg === false) {
return;
}
echo 'ERROR: The file "' . $arg . '" does not exist.' . PHP_EOL . PHP_EOL;
$this->printUsage();
exit(2);
} else {
$this->values['files'][] = $file;
}
}
示例2: processUnknownArgument
/**
* Processes an unknown command line argument.
*
* Assumes all unknown arguments are files and folders to check.
*
* @param string $arg The command line argument.
* @param int $pos The position of the argument on the command line.
*
* @return void
*/
public function processUnknownArgument($arg, $pos)
{
// We don't know about any additional switches; just files.
if ($arg[0] === '-') {
if ($this->dieOnUnknownArg === false) {
return;
}
echo 'ERROR: option "' . $arg . '" not known.' . PHP_EOL . PHP_EOL;
$this->printUsage();
exit(2);
}
$file = PHP_CodeSniffer::realpath($arg);
if (file_exists($file) === false) {
if ($this->dieOnUnknownArg === false) {
return;
}
echo 'ERROR: The file "' . $arg . '" does not exist.' . PHP_EOL . PHP_EOL;
$this->printUsage();
exit(2);
} else {
$this->values['files'][] = $file;
}
}
示例3: processUnknownArgument
/**
* Processes an unknown command line argument.
*
* Assumes all unknown arguments are files and folders to check.
*
* @param string $arg The command line argument.
* @param int $pos The position of the argument on the command line.
*
* @return void
*/
public function processUnknownArgument($arg, $pos)
{
// We don't know about any additional switches; just files.
if ($arg[0] === '-') {
if ($this->dieOnUnknownArg === false) {
return;
}
echo 'ERROR: option "' . $arg . '" not known.' . PHP_EOL . PHP_EOL;
$this->printUsage();
exit(2);
}
$file = PHP_CodeSniffer::realpath($arg);
if (file_exists($file) === false) {
// Check if anything was passed via STDIN.
$read = array(STDIN);
$write = array();
$except = array();
$result = stream_select($read, $write, $except, 0);
if ($result === 1) {
return;
}
if ($this->dieOnUnknownArg === false) {
return;
}
echo 'ERROR: The file "' . $arg . '" does not exist.' . PHP_EOL . PHP_EOL;
$this->printUsage();
exit(2);
} else {
$this->values['files'][] = $file;
}
}