Skip to content

Parser and Serializer for UN/EDIFACT messages in PHP

License

Notifications You must be signed in to change notification settings

estratocloud/edifact

Folders and files

NameName
Last commit message
Last commit date

Latest commit

349e932 · Mar 19, 2025

History

81 Commits
Feb 1, 2025
Mar 19, 2025
Mar 19, 2025
Feb 18, 2021
Aug 24, 2015
Mar 19, 2025
Feb 18, 2021
Aug 7, 2015
Jan 22, 2022
Oct 18, 2024
Feb 1, 2025
Mar 8, 2019
Feb 18, 2021
Aug 11, 2019

Repository files navigation

edifact

A PHP library to parse and serialize UN/EDIFACT messages.

Full documentation is available at http://estratocloud.github.io/edifact/
PHPDoc API documentation is also available at http://estratocloud.github.io/edifact/api/

release build coverage

Quick Examples

Read an EDI message from a file

$message = \Estrato\Edifact\Message::fromFile("/tmp/order.edi");

foreach ($message->getAllSegments() as $segment) {
    echo $segment->getSegmentCode() . "\n";
}

Create an EDI message

$message = new \Estrato\Edifact\Message;

$message->addSegment(new Segment("QTY", ["21", "8"]));

echo $message->serialize() . "\n";

Read more at http://estratocloud.github.io/edifact/

Changelog

A Changelog has been available since the beginning of time