我的数组没有转换成字符串的excell报告

时间:2016-03-15 08:03:22

标签: php

我有一个问题,数组到字符串转换通知在PHP中 当我发送我的数组来运行时,我获取像数组到字符串转换的通知 我有像这样的用户存储数据到数组

if(count($data) == 5 || count($data) == 6){
    array_push($eventsArray, array("customer" => $client_name));
  } 
  else if (count($data) == 3 || count($data) == 4) {
    array_push($eventsArray, array("customer" => $client_name));
  }

我使用此函数在此函数中传递数组

fputcsv($fp, $eventsArray);

但在excell报告输出后我只看到像

这样的错误

this is my excell report image i fetch this error every time]

0 个答案:

没有答案