Skip to content

Instantly share code, notes, and snippets.

@Ivanitch
Created February 9, 2023 07:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ivanitch/1dc09f849621f8422493688f861f3050 to your computer and use it in GitHub Desktop.
Save Ivanitch/1dc09f849621f8422493688f861f3050 to your computer and use it in GitHub Desktop.
Xls to csv
$tmpFile = $sourceFileName;
$fileName = $this->csvFilePath . DIRECTORY_SEPARATOR . $this->csvFileName;
$command = 'xls2csv -c\; -q0 -s cp1251 -d cp1251 ' . $tmpFile . ' > ' . $fileName;
exec($command);
unlink($tmpFile);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment