我需要将Edifact消息转换为PHP数组。应该支持的消息标准是MEDVRY。
如何对其编程?
发布于 2014-06-19 21:42:00
我是@Thomas1703 (https://github.com/sabas/Edifact)使用的类的作者,我最近更新了代码,因为我在正则表达式中发现了一些bug。目前可能会处理所有的需求(包装的消息),并在返回数组之前做一些验证。
发布于 2014-02-27 00:21:10
我使用这个类:https://github.com/sabas/Edifact/blob/master/class.EDIParser.php
$c=new EDIParser('name.edi');
//Output a multidimensional array.
//Errors $c->errors()
//Array $c->get()
//Json $c->getJson()https://stackoverflow.com/questions/4629162
复制相似问题