2017 © Pedro Peláez
 

library packet

image

fastd/packet

  • Friday, April 28, 2017
  • by JanHuang
  • Repository
  • 1 Watchers
  • 3 Stars
  • 5,292 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 12 Versions
  • 10 % Grown

The README.md

packet

Build Status Latest Stable Version Total Downloads Latest Unstable Version License composer.lock, (*1)

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

#composer

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

#使用

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

#二进制
use FastD\Packet\Binary;

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

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

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

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

use FastD\Packet\Json;

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

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

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

#Testing

phpunit

License MIT

The Versions

28/04 2017

1.4.x-dev

1.4.9999999.9999999-dev

  Sources   Download

The Requires

  • php >=5.6

 

The Development Requires

by Avatar JanHuang

28/04 2017

dev-master

9999999-dev

  Sources   Download

The Requires

  • php >=5.6

 

The Development Requires

by Avatar JanHuang

28/04 2017

v1.4.1

1.4.1.0

  Sources   Download

The Requires

  • php >=5.6

 

The Development Requires

by Avatar JanHuang

22/02 2017

v1.4.0

1.4.0.0

  Sources   Download

The Requires

  • php >=5.6

 

The Development Requires

by Avatar JanHuang

05/02 2017

1.3.x-dev

1.3.9999999.9999999-dev

  Sources   Download

The Requires

  • php >=5.6

 

The Development Requires

by Avatar JanHuang

30/12 2016

v1.3.0

1.3.0.0

  Sources   Download

The Requires

  • php >=5.6

 

The Development Requires

by Avatar JanHuang

21/07 2016

1.2.x-dev

1.2.9999999.9999999-dev

  Sources   Download

The Requires

  • php >=5.4

 

The Development Requires

by Avatar JanHuang

21/07 2016

v1.2.0

1.2.0.0

  Sources   Download

The Requires

  • php >=5.4

 

The Development Requires

by Avatar JanHuang

27/05 2016

1.1.x-dev

1.1.9999999.9999999-dev

  Sources   Download

The Requires

  • php >=7.0

 

The Development Requires

by Avatar JanHuang

27/05 2016

v1.1.0

1.1.0.0

  Sources   Download

The Requires

  • php >=7.0

 

The Development Requires

by Avatar JanHuang

20/05 2016

1.0.x-dev

1.0.9999999.9999999-dev

  Sources   Download

The Requires

  • php >=7.0

 

The Development Requires

by Avatar JanHuang

20/05 2016

v1.0.0

1.0.0.0

  Sources   Download

The Requires

  • php >=7.0

 

The Development Requires

by Avatar JanHuang