Excel.class.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <?php
  2. require_once (__DIR__.SLASH.'..'.SLASH.'constant.php');
  3. //Exemple d'utilisation de XLSXWriter : https://github.com/mk-j/PHP_XLSXWriter/tree/master/examples
  4. require_once (LIB_PATH.'XLSXWriter'.SLASH.'XLSXWriter.class.php');
  5. require_once (LIB_PATH.'SimpleXLSX'.SLASH.'SimpleXLSX.class.php');
  6. class Excel
  7. {
  8. /**
  9. * Parse un fichier xlsx et retourne le contenu lignes / colonnes
  10. * @param string $xlsxFile : chemin vers le fichier a parser OU flux si $isStream = true
  11. * @param bool $isStream : définit si l'entrée est un fichier ou un flux
  12. * @param int $sheetIndex : numero de l'onglet excel a parser (commence a 0)
  13. * @param bool $cellInfos : si passé a true, ajoute des infos de cellule (type etc...) plus lent.
  14. */
  15. public static function parse($xlsxFile,$isStream = false,$sheetIndex=1,$cellInfos = false) {
  16. $xlsx = SimpleXLSX::parse($xlsxFile,$isStream);
  17. if(!$xlsx) throw new Exception(SimpleXLSX::parseError());
  18. $rows = ($cellInfos) ? $xlsx->rowsEx($sheetIndex) : $xlsx->rows($sheetIndex);
  19. return $rows;
  20. }
  21. /**
  22. * Retourne le contenu d'un tableau convertit au format XLSX
  23. * @param array $rows le tableau avec les lignes à exporter dans le fichier
  24. * @param array $mapping le mapping qui permet d'ajouter des libellé en fct des clés de colonne
  25. * Structure du tableau de mapping attendu : aaray(
  26. * 'Label' => 'clé',
  27. * 'Autre label' => 'autre clé',
  28. * etc...
  29. * );
  30. * @param string $sheetname le nom à donner à la feuille de calcul courante
  31. * @return string le stream du fichier généré
  32. */
  33. public static function exportArray($rows, $mapping, $sheetname='Classeur 1'){
  34. $data = $header = array();
  35. $style = array(
  36. 'border' => 'top,left,bottom,right',
  37. 'border-style' => 'thin'
  38. );
  39. if(empty($mapping) && isset($rows[0])){
  40. foreach($rows[0] as $key=>$value)
  41. $mapping[$key] = $key;
  42. }
  43. foreach ($rows as $key => $item) {
  44. $itemContent = array();
  45. if (isset($mapping)) {
  46. foreach ($mapping as $label => $attributes) {
  47. $slug = is_array($attributes) ? (isset($attributes['slug']) ? $attributes['slug'] : '') : $attributes;
  48. $header[$label] = (is_array($attributes) && isset($attributes['type'])) ? $attributes['type'] : 'string';
  49. isset($item[$slug]) ? array_push($itemContent, $item[$slug]) : array_push($itemContent, '');
  50. }
  51. } else {
  52. foreach ($item as $field => $value)
  53. array_push($itemContent, $item[$field]);
  54. }
  55. array_push($data, $itemContent);
  56. }
  57. ob_start();
  58. $excel = new XLSXWriter();
  59. $excel->writeSheetHeader($sheetname, $header, array_merge($style, array('font-style'=> 'bold','border-color' => '#2a2a28')));
  60. foreach($data as $row)
  61. $excel->writeSheetRow($sheetname, $row, array_merge($style, array('border-color' => '#cecece')));
  62. $excel->writeToStdOut();
  63. $output = ob_get_clean();
  64. return $output;
  65. }
  66. /**
  67. * Export de données sur plusieurs feuilles Excel
  68. * @param array $content [Contenu à exporter]
  69. * Format du tableau de contenu attendu :
  70. * array(
  71. * 'Classeur 1' => array(
  72. * 'mapping' => array(
  73. * 'Libellé' => 'slug',
  74. * 'Libellé' => 'slug',
  75. * 'Libellé' => 'slug'
  76. * ),
  77. * 'rows' => array(
  78. * 0 => objet/entité exporté,
  79. * 1 => objet/entité exporté,
  80. * 2 => objet/entité exporté
  81. * )
  82. * ),
  83. * 'Classeur 2' => array(
  84. * 'mapping' => array(
  85. * 'Libellé' => 'slug',
  86. * 'Libellé' => 'slug',
  87. * 'Libellé' => 'slug'
  88. * ),
  89. * 'rows' => array(
  90. * 0 => objet/entité exporté,
  91. * 1 => objet/entité exporté,
  92. * 2 => objet/entité exporté
  93. * )
  94. * ), etc...
  95. * );
  96. * On place généralement $response['rows'] dans l'index 'rows' d'une feuille Excel
  97. *
  98. * @param string $filename [Nom du fichier à exporter]
  99. *
  100. * @return string [Fichier XSLX]
  101. */
  102. public static function exportMultipleSheets($content){
  103. $commonStyle = array('border'=> 'top,left,bottom,right', 'border-style'=> 'thin');
  104. $headerStyle = array_merge($commonStyle, array('font-style'=> 'bold','border-color'=> '#2a2a28'));
  105. $contentStyle = array_merge($commonStyle, array('border-color'=> '#cecece'));
  106. $styles = array(
  107. 'header' => $headerStyle,
  108. 'content'=> $contentStyle
  109. );
  110. $excel = new XLSXWriter();
  111. foreach ($content as $sheetName => $sheetContent) {
  112. $data = $header = array();
  113. foreach ($sheetContent['rows'] as $item) {
  114. $itemContent = array();
  115. if (isset($sheetContent['mapping'])) {
  116. foreach ($sheetContent['mapping'] as $label => $attributes) {
  117. $slug = is_array($attributes) ? (isset($attributes['slug']) ? $attributes['slug'] : '') : $attributes;
  118. $header[$label] = (is_array($attributes) && isset($attributes['type'])) ? $attributes['type'] : 'string';
  119. isset($item[$slug]) ? array_push($itemContent, $item[$slug]) : array_push($itemContent, '');
  120. }
  121. } else {
  122. foreach ($item as $field => $value) {
  123. array_push($itemContent, $item[$field]);
  124. }
  125. }
  126. array_push($data, $itemContent);
  127. }
  128. $excel->writeSheet($data, $sheetName, $header, $styles);
  129. }
  130. ob_start();
  131. $excel->writeToStdOut();
  132. $output = ob_get_clean();
  133. return $output;
  134. }
  135. }