Download the PHP package juancarlo99/read-xml-cte-nfe without Composer
On this page you can find all versions of the php package juancarlo99/read-xml-cte-nfe. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download juancarlo99/read-xml-cte-nfe
More information about juancarlo99/read-xml-cte-nfe
Files in juancarlo99/read-xml-cte-nfe
Download juancarlo99/read-xml-cte-nfe
More information about juancarlo99/read-xml-cte-nfe
Files in juancarlo99/read-xml-cte-nfe
Vendor juancarlo99
Package read-xml-cte-nfe
Short Description biblioteca que faz a leitura do arquivos xml tipo CT-e e NF-e.
License MIT
Package read-xml-cte-nfe
Short Description biblioteca que faz a leitura do arquivos xml tipo CT-e e NF-e.
License MIT
Please rate this library. Is it a good library?
Informations about the package read-xml-cte-nfe
ReadXmlCteNfe
Biblioteca que faz a leitura do arquivos xml tipo CT-e e NF-e.
-
Instalação:
composer require juancarlo99/read-xml-cte-nfe
Detalhes Aqui -
Exemplo de Uso:
Exemplo NF-e
use Xml\Read\Nfe; $nfe = new Nfe("./teste.xml"); $dados = $nfe->all();
use Xml\Read\Nfe; // Pode ser usado as buscas separadamente. $dados = $nfe->getChave(); $dados = $nfe->getIdentificacaoNFE(); $dados = $nfe->getEmitente(); $dados = $nfe->getDestinatario(); $dados = $nfe->getExpedidor(); $dados = $nfe->getServicos(); $dados = $nfe->getTotal(); $dados = $nfe->getCobranca(); $dados = $nfe->getTransporte();
Exemplo CT-e
use Xml\Read\Cte; $nfe = new Cte("./cte.xml"); // Pode ser usado as buscas separadamente. $dados = $nfe->getCabecalho(); $dados = $nfe->getChave(); $dados = $nfe->getDestinatario(); $dados = $nfe->getEmitente(); $dados = $nfe->getExpedidor(); $dados = $nfe->getRecebedor(); $dados = $nfe->getImposto(); $dados = $nfe->getRemetente(); $dados = $nfe->getServicos();
Onde o parametro obrigatório no contrutor é o caminho para um arquivo xml.
All versions of read-xml-cte-nfe with dependencies
PHP Build Version
Package Version
Requires
php Version
>=8.0
The package juancarlo99/read-xml-cte-nfe contains the following files
Loading the files please wait ....