• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP Zend_Amf_Parse_Amf3_Serializer类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: encode

 public function encode($data, $human_readable = false)
 {
     $this->init();
     require_once $this->path . 'OutputStream.php';
     require_once $this->path . 'Amf3/Serializer.php';
     $stream = new Zend_Amf_Parse_OutputStream();
     $serializer = new Zend_Amf_Parse_Amf3_Serializer($stream);
     $serializer->writeTypeMarker($data);
     return $stream->getStream();
 }
开发者ID:emildev35,项目名称:processmaker,代码行数:10,代码来源:amfformat.php


示例2: serialize

 /**
  * Serialize a PHP value to AMF3 format
  *
  * @param  mixed $value
  * @param  array $opts
  * @return string
  * @throws Zend_Serializer_Exception
  */
 public function serialize($value, array $opts = array())
 {
     try {
         $stream = new Zend_Amf_Parse_OutputStream();
         $serializer = new Zend_Amf_Parse_Amf3_Serializer($stream);
         $serializer->writeTypeMarker($value);
         return $stream->getStream();
     } catch (Exception $e) {
         throw new Zend_Serializer_Exception('Serialization failed by previous error', 0, $e);
     }
 }
开发者ID:trigoesrodrigo,项目名称:icingaweb2,代码行数:19,代码来源:Amf3.php


示例3: writeAmf3TypeMarker

 /**
  * Encountered and AMF3 Type Marker use AMF3 serializer. Once AMF3 is
  * encountered it will not return to AMf0.
  *
  * @param  string $data
  * @return Zend_Amf_Parse_Amf0_Serializer
  */
 public function writeAmf3TypeMarker(&$data)
 {
     // // require_once 'Zend/Amf/Parse/Amf3/Serializer.php';
     $serializer = new Zend_Amf_Parse_Amf3_Serializer($this->_stream);
     $serializer->writeTypeMarker($data);
     return $this;
 }
开发者ID:ahdail,项目名称:humhub,代码行数:14,代码来源:Serializer.php


示例4: sendData

 public function sendData($data)
 {
     header("Cache-Control: no-cache, must-revalidate");
     header("Expires: 0");
     header('Content-Type: ' . $this->format);
     if ($this->format == RestFormat::AMF) {
         require_once 'Zend/Amf/Parse/OutputStream.php';
         require_once 'Zend/Amf/Parse/Amf3/Serializer.php';
         $stream = new Zend_Amf_Parse_OutputStream();
         $serializer = new Zend_Amf_Parse_Amf3_Serializer($stream);
         $serializer->writeTypeMarker($data);
         $data = $stream->getStream();
     } else {
         if (is_object($data) && method_exists($data, '__keepOut')) {
             $data = clone $data;
             foreach ($data->__keepOut() as $prop) {
                 unset($data->{$prop});
             }
         }
         $data = json_encode($data);
         if ($data && $this->mode == 'debug') {
             $data = $this->json_format($data);
         }
     }
     echo $data;
 }
开发者ID:csteven,项目名称:Provisioner,代码行数:26,代码来源:RestServer.php


示例5: sendData

 public function sendData($data)
 {
     header('Content-Type: ' . $this->format);
     if ($this->format == RestFormat::AMF) {
         require_once 'Zend/Amf/Parse/OutputStream.php';
         require_once 'Zend/Amf/Parse/Amf3/Serializer.php';
         $stream = new Zend_Amf_Parse_OutputStream();
         $serializer = new Zend_Amf_Parse_Amf3_Serializer($stream);
         $serializer->writeTypeMarker($data);
         $data = $stream->getStream();
     } else {
         if ($this->format == RestFormat::XML) {
             $data = ArrayToXML::toXml($data);
         } else {
             $data = json_encode($data);
             if ($data && $this->mode == 'debug') {
                 $data = $this->json_format($data);
                 $mathes = array();
                 $pattern = '/"new Date\\([0-9\\,\\s]*\\)"/';
                 $matches = array();
                 preg_match_all($pattern, $data, $matches);
                 $matches = $matches[0];
                 foreach ($matches as $match) {
                     $tmpStrLen = strlen($match);
                     $tmpStr = substr($match, 1, $tmpStrLen - 2);
                     $data = str_replace($match, $tmpStr, $data);
                 }
             }
         }
     }
     echo $data;
 }
开发者ID:nomaan-alkurn,项目名称:thooth,代码行数:32,代码来源:RestServer.php


示例6: writeCollection

 public function writeCollection(&$object)
 {
     // In order to get around the problems with ZendAMF and Iterator/foreach we create a vanilla object and use _explicitType to
     // map it on the client.  The source property maps to mx.collections.ArrayCollection::source.  We also need to add whether
     // or not the collection is initialized.
     $wrappedObject = new \stdClass();
     $wrappedObject->_explicitType = "org.davekeen.flextrine.orm.collections.PersistentCollection";
     if ($object instanceof \Doctrine\ORM\PersistentCollection) {
         $wrappedObject->source = $object->unwrap()->toArray();
         $wrappedObject->isInitialized__ = $object->isInitialized() || sizeof($wrappedObject->source) > 0;
     } else {
         $wrappedObject->source = $object->toArray();
         $wrappedObject->isInitialized__ = true;
     }
     parent::writeObject($wrappedObject);
 }
开发者ID:gomestai,项目名称:flextrine,代码行数:16,代码来源:Serializer.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP Zend_Amf_Parse_OutputStream类代码示例发布时间:2022-05-23
下一篇:
PHP Zend_Amf_Parse_Amf3_Deserializer类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap