PHP fwrite “.xlsx format or extension is not valid” local server
问题 I am trying to write data into an excel file. I execute the code, but when I then try to open the excel file, I am getting an error that states that the format or the extension are not valid. This is my first time working with excel files on PHP. Here is my code: $e = fopen("Test.xlsx", "w"); fwrite($e, $balances['XVG']['onOrder']); fclose($e); Excel 2013 version: Does anyone knows what could be wrong? Thank you. 回答1: You can use PHPExcel: How can i write data into an excel using PHP You can