So I store a file in s3 as temp sotrage
and then try to import/parse it
but get reader exception
I can't pass the file itself to import function as it expects string file path
so I tried to add s3://
but failed again because during debugging I saw this
vendor/box/spout/src/Spout/Reader/XLSX/Reader.php
/**
* Returns whether stream wrappers are supported
*
* @return bool
*/
protected function doesSupportStreamWrapper()
{
return false;
}
So I store a file in s3 as temp sotrage and then try to import/parse it but get reader exception I can't pass the file itself to import function as it expects string file path so I tried to add
s3://
but failed again because during debugging I saw thisvendor/box/spout/src/Spout/Reader/XLSX/Reader.php
can anyone advice if I can import from s3?