rodnaph/edhen 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

rodnaph/edhen

最新稳定版本:0.16.0

Composer 安装命令:

composer require rodnaph/edhen

包简介

Encode/Decode EDN

README 文档

README

A tool to encode/decode between EDN and PHP data structures.

Note

When converting from EDN to PHP the conversion is lossy as the richness of datatypes supported by EDN is not available in PHP. So a conversion from EDN to PHP and back to EDN would not lose you data, but it would lose type information.

Usage

The interface is via some static functions on the Edhen class. To decode an EDN element...

$element = Edhen::decode('(1 :foo [2])');

// array(1, ':foo', array(2))

If you have EDN with multiple elements, you can use decodeAll

$elements = Edhen::decodeAll(':foo :bar :baz');

// array(':foo', ':bar', ':baz')

Then for encoding use the encode function, passing it the data to encode...

$ednString = Edhen::encode(array(1, 2));

// '[1 2]'

Data Type Translations

When decoding EDN to PHP...

EDN PHP
nil null
true true
false false
strings string
characters string
symbols string
keywords string
integer integer
floating-point double
lists array
vectors array
maps array
sets array

Builtin Tags

EDN PHP
inst DateTime
uuid string

When encoding PHP to EDN...

PHP EDN
null nil
boolean boolean
integer integer
double float
array vector
array (assoc) hashmap
object hashmap
resource nil
callable nil

The decision on if an array is to be converted to a vector or hashmap is done by checking its keys. If any of the keys are non-numeric then a hashmap is used.

EDN is generated as a single string, no pretty-printing is currently supported. Another tool should be used for this.

Custom Tag Handlers

To implement your own tag handlers, create a class which implements the Edhen\TagHandler interface and pass it in an array as the second argument to decode/decodeAll

$myHandler = new MyCustomTagHandler();

$element = Edhen::decode($edn, array($myHandler));

You can see an example in the tests.

Installation

Edhen can be installed via Composer.

统计信息

  • 总下载量: 125.14k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 7
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 7
  • Watchers: 1
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2013-12-30

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固