當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。