2017 © Pedro Peláez
 

library packet

Uniondrug Packet Component for uniondrug/framework

image

uniondrug/packet

Uniondrug Packet Component for uniondrug/framework

  • Tuesday, May 8, 2018
  • by wsfuyibing
  • Repository
  • 3 Watchers
  • 0 Stars
  • 221 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 126 % Grown

The README.md

packet

THANKS:本模块来自 FastD, (*1)

PHP 数据打包、解包工具,支持二进制,json格式., (*2)

#composer

{
    "require": {
        "uniondrug/packet": "~1.1"
    }
}

#使用

二进制数据打包的时候程序会将内容加入 “盐(SALT)” 来强化数据安全性,如果需要自定义盐值,需要在实现类中重写 Uniondrug\Packet\PacketInterface::SALT 类常量。, (*3)

#二进制
use Uniondrug\Packet\Binary;

$origin = ['name' => 'janhuang'];

$data = Binary::encode($origin);
$origin = Binary::decode($data);

/**
 * Array(
 *      "name" => "janhuang"
 * )
 */
#JSON

JSON 数据在打包的时候同样会加入盐值,程序自行追加,并且会对盐值进行在加密,在数据处理解析返回会自动移除盐值,返回纯净数据。因此在传入数据的时候需要注意不要存在 packet_salt 字段。, (*4)

use Uniondrug\Packet\Json;

$origin = ['name' => 'janhuang'];

$data = Json::encode($origin);
$origin = Json::decode($data);

/**
 * Array(
 *      "name" => "janhuang"
 * )
 */

#Testing

phpunit

License MIT

The Versions

08/05 2018

dev-master

9999999-dev

Uniondrug Packet Component for uniondrug/framework

  Sources   Download

The Requires

  • php >=5.6

 

The Development Requires

by Avatar JanHuang

08/05 2018

2.0.3

2.0.3.0

Uniondrug Packet Component for uniondrug/framework

  Sources   Download

The Requires

  • php >=5.6

 

The Development Requires

by Avatar JanHuang

08/05 2018

2.x-dev

2.9999999.9999999.9999999-dev

Uniondrug Packet Component for uniondrug/framework

  Sources   Download

The Requires

  • php >=5.6

 

The Development Requires

by Avatar JanHuang

23/04 2018

2.0.2

2.0.2.0

Uniondrug Packet Component for uniondrug/framework

  Sources   Download

The Requires

  • php >=5.6

 

The Development Requires

by Avatar JanHuang

03/04 2018

2.0.1

2.0.1.0

Uniondrug Packet Component for uniondrug/framework

  Sources   Download

The Requires

  • php >=5.6

 

The Development Requires

by Avatar JanHuang

28/03 2018

2.0.0

2.0.0.0

  Sources   Download

The Requires

  • php >=5.6

 

The Development Requires

by Avatar JanHuang