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


PHP Writer::serialize方法代码示例

本文整理汇总了PHP中Writer::serialize方法的典型用法代码示例。如果您正苦于以下问题:PHP Writer::serialize方法的具体用法?PHP Writer::serialize怎么用?PHP Writer::serialize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Writer的用法示例。


在下文中一共展示了Writer::serialize方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: serialize

 public static function serialize($var, $simple = false)
 {
     $stream = new BytesIO();
     $writer = new Writer($stream, $simple);
     $writer->serialize($var);
     return $stream->toString();
 }
开发者ID:iwillhappy1314,项目名称:laravel-admin,代码行数:7,代码来源:Formatter.php

示例2: afterInvoke

 public function afterInvoke($name, $args, $byref, $mode, $simple, $context, $result, $output, $async)
 {
     if ($this->onAfterInvoke !== null) {
         $afterInvoke = $this->onAfterInvoke;
         call_user_func_array($afterInvoke, array($name, &$args, $byref, &$result, $context));
     }
     if ($mode == ResultMode::RawWithEndTag) {
         return $this->outputFilter($result, $context);
     } elseif ($mode == ResultMode::Raw) {
         $output->write($result);
     } else {
         $writer = new Writer($output, $simple);
         $output->write(Tags::TagResult);
         if ($mode == ResultMode::Serialized) {
             $output->write($result);
         } else {
             $writer->reset();
             $writer->serialize($result);
         }
         if ($byref) {
             $output->write(Tags::TagArgument);
             $writer->reset();
             $writer->writeArray($args);
         }
     }
     if ($async) {
         $output->write(Tags::TagEnd);
         return $this->outputFilter($output->toString(), $context);
     }
     return null;
 }
开发者ID:ifa6,项目名称:hprose-php,代码行数:31,代码来源:Service.php

示例3: doInvoke

 protected function doInvoke($input, $context)
 {
     $output = new BytesIO();
     $reader = new Reader($input);
     do {
         $reader->reset();
         $name = $reader->readString();
         $alias = strtolower($name);
         if (isset($this->calls[$alias])) {
             $call = $this->calls[$alias];
         } elseif (isset($this->calls['*'])) {
             $call = $this->calls['*'];
         } else {
             throw new \Exception("Can't find this function " . $name . "().");
         }
         $mode = $call->mode;
         $simple = $call->simple;
         if ($simple === null) {
             $simple = $this->simple;
         }
         $args = array();
         $byref = false;
         $tag = $input->getc();
         if ($tag == Tags::TagList) {
             $reader->reset();
             $args = $reader->readListWithoutTag();
             $tag = $input->getc();
             if ($tag == Tags::TagTrue) {
                 $byref = true;
                 $tag = $input->getc();
             }
             if ($call->byref) {
                 $_args = array();
                 foreach ($args as $i => &$arg) {
                     if ($call->params[$i]->isPassedByReference()) {
                         $_args[] =& $arg;
                     } else {
                         $_args[] = $arg;
                     }
                 }
                 $args = $_args;
             }
         }
         if ($tag != Tags::TagEnd && $tag != Tags::TagCall) {
             throw new \Exception('Unknown tag: ' . $tag . "\r\n" . 'with following data: ' . $input->toString());
         }
         if ($this->onBeforeInvoke !== null) {
             $beforeInvoke = $this->onBeforeInvoke;
             $beforeInvoke($name, $args, $byref, $context);
         }
         if (array_key_exists('*', $this->calls) && $call === $this->calls['*']) {
             $args = array($name, $args);
         }
         $result = call_user_func_array($call->func, $args);
         if ($this->onAfterInvoke !== null) {
             $afterInvoke = $this->onAfterInvoke;
             $afterInvoke($name, $args, $byref, $result, $context);
         }
         if ($mode == ResultMode::RawWithEndTag) {
             return $this->outputFilter($result, $context);
         } elseif ($mode == ResultMode::Raw) {
             $output->write($result);
         } else {
             $writer = new Writer($output, $simple);
             $output->write(Tags::TagResult);
             if ($mode == ResultMode::Serialized) {
                 $output->write($result);
             } else {
                 $writer->reset();
                 $writer->serialize($result);
             }
             if ($byref) {
                 $output->write(Tags::TagArgument);
                 $writer->reset();
                 $writer->writeArray($args);
             }
         }
     } while ($tag == Tags::TagCall);
     $output->write(Tags::TagEnd);
     return $this->outputFilter($output->toString(), $context);
 }
开发者ID:925800521,项目名称:itskycms,代码行数:81,代码来源:Service.php

示例4: doOutput

 function doOutput(array $args, stdClass $context, $result)
 {
     $mode = $context->mode;
     $simple = $context->simple;
     if ($simple === null) {
         $simple = $this->simple;
     }
     if ($mode === ResultMode::RawWithEndTag || $mode == ResultMode::Raw) {
         return $result;
     }
     $stream = new BytesIO();
     $writer = new Writer($stream, $simple);
     $stream->write(Tags::TagResult);
     if ($mode === ResultMode::Serialized) {
         $stream->write($result);
     } else {
         $writer->reset();
         $writer->serialize($result);
     }
     if ($context->byref) {
         $stream->write(Tags::TagArgument);
         $writer->reset();
         $writer->writeArray($args);
     }
     $data = $stream->toString();
     $stream->close();
     return $data;
 }
开发者ID:qieangel2013,项目名称:zys,代码行数:28,代码来源:Socket_Service.php


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