This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.react-spring.io/ | |
https://www.framer.com/motion/ | |
http://animxyz.com/ | |
https://animejs.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
# código php factronica para importar timbraje de folios del sii a la base de datos mysql | |
# DEFINIR LA RUTA DONDE SE ENCUENTRA EL XML CON EL TIMBRAJE ELECTRONICO | |
$ruta_file="/factronica_importar_folios/xml/timbraje_facturaelectronica.xml"; | |
# CARGAR EN MEMORIA EL XML CON TIMBRAJE ELECTRONICO | |
$dom = new DOMDocument; | |
$xml=file_get_contents($ruta_file); | |
$dom->loadXML($xml); | |
# RECORRER XML PARA LEER LA INFORMACION DE LOS CAMPOS REQUERIDOS | |
$elementos=$dom->getElementsByTagName('RE'); |