I use PHPExcel to process excel documents. There was such a task: the excel file is laid out on the windows server at \\server\change\ex.xls . Next, read the file and operate on the data. PHPExel can't read
Could not open \vrt-sql\Change\ex.xls for reading! File does not exist. (0) $Excel = PHPExcel_IOFactory::load('\\vrt-sql\Change\ex.xls'); query $Excel = PHPExcel_IOFactory::load('\\vrt-sql\Change\ex.xls');
As I understand it, the problem is with the NFS address. Tell me how can I read this file using PHP? Or suggest another way to do this. PS CentOS 7, PHP 7.0.27
I forgot to mention that the process will be automated. It is assumed 3-4 files per day and possibly at night.