本文整理汇总了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);
}