当前位置: 首页>>代码示例>>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;未经允许,请勿转载。