I am using the version 4 of phpxlsx with the bureau licence.
We are using namespaces package.
We are using php version 8.3.
Here is an extract from the code :
$file = $request->files->get('file');
if (!$file) {
return new Response("Aucun fichier uploadé.", Response::HTTP_BAD_REQUEST);
}
$filePath = $file->getRealPath();
Is it possible to read an imported xlsx file and export it as a csv file?
I would like the CSV file to be encoded in UTF-8 and separated by semicolons (;).