Download the PHP package lifetrenz/hl7 without Composer
On this page you can find all versions of the php package lifetrenz/hl7. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download lifetrenz/hl7
More information about lifetrenz/hl7
Files in lifetrenz/hl7
Informations about the package hl7
Important: Minimum supported PHP version has been updated to 8.0
Last supported versions:
-> PHP 7.0 or 7.1 => 1.5.4
-> PHP 7.2 => 2.0.2
-> PHP 7.4 => 2.1.7
Introduction
A PHP-based HL7 v2.x Parsing, Generation and Sending library, inspired from the famous Perl Net-HL7 package.
Installation
Usage
Import library
Parsing
Composing new messages
Message constructor parameters
Handling segments and fields
Send messages to remote listeners
Side note: In order to run Connection you need to install PHP ext-sockets https://www.php.net/manual/en/sockets.installation.php
ACK
Handle ACK message returned from a remote HL7 listener...
Create an ACK response from a given HL7 message:
Options can be passed while creating ACK object:
APIs
This package exposes a number of public methods for convenient HL7 handling. Some examples are:
1) Considering you have a Message object (say, $msg = new Message(file_get_contents('somefile.hl7'));
)
Visit docs\README for details on available APIs
All segment level getter/setter APIs can be used in two ways -
-
If a position index isn't provided as argument (1st argument for getters, 2nd for setters), a standard index is used.
$pid->setPatientName('John Doe')
-> Set patient name at position 5 as per HL7 v2.3 standard
$pid->getPatientAddress()
-> Get patient address from standard 11th position - To use a custom position index, provide it in the argument:
$pid->setPatientName('John Doe', 6)
-> Set patient name at 6th position in PID segment
$pid->getPatientAddress(12)
-> Get patient address from 12th position
Issues
Bug reports and feature requests can be submitted on the Github Issue Tracker.
Contributing
See CONTRIBUTING.md for information.
All versions of hl7 with dependencies
ext-mbstring Version *