skip to Main Content

Negative time values in PhpSpreadsheet

Our software is designed to track work hours, so we need to generate Excel files that include negative time values. According to the PhpSpreadsheet documentation: Note that the baseline date itself is day 1; so strictly speaking, the base date…

VIEW QUESTION

PHP XLS Reader is writing extra columns

I Have a function that reads a xls on php, transforms it, and returns it in csv, heres the html <!DOCTYPE html> <html> <head> <title>Import</title> </head> <body> <h1>File upload</h1> <form method="POST" action="process.php" enctype="multipart/form-data"> <label>File</label> <input type="file" name="arquivo"><br><br> <input type="submit" value="send">…

VIEW QUESTION

PHPSpreadsheet doesn't work with PHP version 7.3.26 – PHP Versions

I have tested this on 7.2 and it's working. When I move this code to 7.3 it's not working. I installed PHPSpreadsheet without using composer <?php namespace PhpOffice; include ".PhpOfficeautoload.php"; use PhpOfficePhpSpreadsheetSpreadsheet; use PhpOfficePhpSpreadsheetWriterXlsx; use PhpOfficePhpSpreadsheetStyleBorder; use PhpOfficePhpSpreadsheetStyleColor; $htmlString =…

VIEW QUESTION
Back To Top
Search