本文整理匯總了PHP中SplQueue::add方法的典型用法代碼示例。如果您正苦於以下問題:PHP SplQueue::add方法的具體用法?PHP SplQueue::add怎麽用?PHP SplQueue::add使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SplQueue
的用法示例。
在下文中一共展示了SplQueue::add方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: lintFile
/**
* lint a file, pass errors to the queue
* @param string $file path/to/file
* @return bool
*/
private function lintFile($file)
{
if ($this->output->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) {
$this->output->write('lint file ' . $file . ' ... ');
}
$status = false;
$handler = XMLFileHandler::createXmlHandlerFromFile($file);
try {
$handler->getDOMDocument();
$status = true;
} catch (XMLHandlerException $e) {
$msg = new \stdClass();
if ($handler->hasErrors()) {
$formatter = new ErrorFormatter($handler->getXmlErrors());
$formatter->setPrefix(' > ');
$msg->file = $file;
$msg->message = $formatter->getErrorsAsString();
} else {
$msg->file = $file;
$msg->message = sprintf(' > %s (Exception: "%s")' . PHP_EOL, $e->getMessage(), get_class($e));
}
$this->errorQueue->add($this->errorQueue->count(), $msg);
}
if ($this->output->getVerbosity() >= OutputInterface::VERBOSITY_VERBOSE) {
if ($status === false) {
$this->output->writeln('<error>errors</error>');
} else {
$this->output->writeln('<info>passed.</info>');
}
} else {
if ($status === false) {
$this->output->write('<error>F</error>');
} else {
$this->output->write('.');
}
}
return $status;
}
示例2: setCliente
/**
* @param \SplObserver $cliente
*/
public function setCliente(\SplObserver $cliente)
{
$this->filaDeclientes->add($cliente);
}