當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Writer::writeString方法代碼示例

本文整理匯總了PHP中Writer::writeString方法的典型用法代碼示例。如果您正苦於以下問題:PHP Writer::writeString方法的具體用法?PHP Writer::writeString怎麽用?PHP Writer::writeString使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Writer的用法示例。


在下文中一共展示了Writer::writeString方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: encode

 private function encode($name, array $args, stdClass $context)
 {
     $stream = new BytesIO(Tags::TagCall);
     $writer = new Writer($stream, $context->simple);
     $writer->writeString($name);
     if (count($args) > 0 || $context->byref) {
         $writer->reset();
         $writer->writeArray($args);
         if ($context->byref) {
             $writer->writeBoolean(true);
         }
     }
     $stream->write(Tags::TagEnd);
     $request = $stream->toString();
     $stream->close();
     return $request;
 }
開發者ID:qieangel2013,項目名稱:zys,代碼行數:17,代碼來源:Socket_Client.php

示例2: sendError

 protected function sendError($error, $context)
 {
     if ($this->onSendError !== null) {
         $sendError = $this->onSendError;
         $sendError($error, $context);
     }
     $stream = new BytesIO();
     $writer = new Writer($stream, true);
     $stream->write(Tags::TagError);
     $writer->writeString($error);
     $stream->write(Tags::TagEnd);
     $data = $stream->toString();
     $stream->close();
     return $this->outputFilter($data, $context);
 }
開發者ID:925800521,項目名稱:itskycms,代碼行數:15,代碼來源:Service.php

示例3: doOutput

 private function doOutput($name, &$args, $byref, $simple, $context)
 {
     if ($simple === null) {
         $simple = $this->simple;
     }
     $stream = new BytesIO(Tags::TagCall);
     $writer = new Writer($stream, $simple);
     $writer->writeString($name);
     if (count($args) > 0 || $byref) {
         $writer->reset();
         $writer->writeArray($args);
         if ($byref) {
             $writer->writeBoolean(true);
         }
     }
     $stream->write(Tags::TagEnd);
     $request = $stream->toString();
     $count = count($this->filters);
     for ($i = 0; $i < $count; $i++) {
         $request = $this->filters[$i]->outputFilter($request, $context);
     }
     $stream->close();
     return $request;
 }
開發者ID:iwillhappy1314,項目名稱:laravel-admin,代碼行數:24,代碼來源:Client.php

示例4: sendError

 function sendError($error, stdClass $context)
 {
     if (is_string($error)) {
         $error = new Exception($error);
     }
     try {
         if ($this->onSendError !== null) {
             $onSendError = $this->onSendError;
             $e = call_user_func_array($onSendError, array(&$error, $context));
             if ($e instanceof Exception || $e instanceof Throwable) {
                 $error = $e;
             }
         }
     } catch (Exception $e) {
         $error = $e;
     }
     $stream = new BytesIO();
     $writer = new Writer($stream, true);
     $stream->write(Tags::TagError);
     $writer->writeString($this->debug ? $error->getTraceAsString() : $error->getMessage());
     return $stream;
 }
開發者ID:qieangel2013,項目名稱:zys,代碼行數:22,代碼來源:Socket_Service.php


注:本文中的Writer::writeString方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。