EDIFACT 到 PHP 数组

发布于 2024-10-11 08:49:38 字数 65 浏览 1 评论 0原文

我需要将 Edifact 消息转换为 PHP 数组。 应支持的消息标准是MEDVRY。

如何编程呢?

I need to convert Edifact messages to a PHP array.
The message standard which should be supported is MEDVRY.

How to program that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寻梦旅人 2024-10-18 08:49:38

我是 @Thomas1703 使用的类的作者 (https://github.com/sabas/Edifact),我最近更新了代码,因为我发现正则表达式中存在一些错误。
目前处理可能所有需求(包装消息)并在返回数组之前进行一些验证。

I'm the author of the class used by @Thomas1703 (https://github.com/sabas/Edifact), I've updated the code recently because I found some bugs in the regexes.
Currently handles probably all the needs (wrapped messages) and does a bit of validation before returning the array.

可可 2024-10-18 08:49:38

我用这个类:
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()

i use this class:
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()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文