Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 12, 2019 23:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/70e28a9fd95518dc37e2117fabf932eb to your computer and use it in GitHub Desktop.
Save parzibyte/70e28a9fd95518dc37e2117fabf932eb to your computer and use it in GitHub Desktop.
<?php
# Indicar que usaremos el IOFactory
use PhpOffice\PhpSpreadsheet\IOFactory;
# Obtener conexión o salir en caso de error, mira bd.php
$bd = obtenerBD();
# El archivo a importar
# Recomiendo poner la ruta absoluta si no está junto al script
$rutaArchivo = "Ventas.xlsx";
$documento = IOFactory::load($rutaArchivo);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment