Results 1 issues of KenDzz

https://imgur.com/BD1V12I ```php $_csvEncoding= 'UTF-8'; $_dataEncoding = 'UTF-8'; $_newline = "\r\n"; $_eol = "\r\n"; $_bom = true; $timestamp = time(); $this->response = $this->response->withDownload('test-'.$timestamp.'.csv'); $this->set(compact('data', '_dataEncoding' ,'_csvEncoding', '_newline', '_eol', '_bom')); $this->viewBuilder() ->setClassName('CsvView.Csv')...

question