瀏覽代碼

CsvGenerator

master
Guillaume 4 年之前
父節點
當前提交
063056ddb5
共有 1 個文件被更改,包括 7 次插入3 次删除
  1. +7
    -3
      ShopBundle/Services/CsvGenerator.php

+ 7
- 3
ShopBundle/Services/CsvGenerator.php 查看文件

@@ -61,9 +61,13 @@ class CsvGenerator

public function encodeArray($array)
{
return array_map(function($value) {
return $this->encode($value) ;
}, $array) ;
if($array && is_array($array)) {
return array_map(function($value) {
return $this->encode($value) ;
}, $array) ;
}

return $array ;
}

public function setTitle($title, $displayHeader = false){

Loading…
取消
儲存