当前位置: 首页>>代码示例>>PHP>>正文


PHP SplQueue::add方法代码示例

本文整理汇总了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;
 }
开发者ID:ramunasd,项目名称:xml-lint,代码行数:43,代码来源:LintCommand.php

示例2: setCliente

 /**
  * @param \SplObserver $cliente
  */
 public function setCliente(\SplObserver $cliente)
 {
     $this->filaDeclientes->add($cliente);
 }
开发者ID:he--,项目名称:liquidaJp,代码行数:7,代码来源:LiquidaJp.php


注:本文中的SplQueue::add方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。