We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thanks for the wonderful code.
This line of code cause exception on Windows
$temp_dir = '/tmp' . DIRECTORY_SEPARATOR . 'PHPExport_' . rand( 1, 9999 );
I guess you should check the current OS and use %temp% on windows.
%temp%
The text was updated successfully, but these errors were encountered:
Thank you for that issue, gonna fix this today in the evening.
Sorry, something went wrong.
Changed this line to use the sys_get_temp_dir() function which is OS-sensitive. Tagged v0.2
sys_get_temp_dir()
No branches or pull requests
Thanks for the wonderful code.
This line of code cause exception on Windows
I guess you should check the current OS and use
%temp%
on windows.The text was updated successfully, but these errors were encountered: