PHP code example of easyise / eisexlsx

1. Go to this page and download the library: Download easyise/eisexlsx library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

easyise / eisexlsx example snippets



x = new eiseXLSX("myemptyfile.xlsx");

$xlsx->data('A4', 'Hello, world!'); // either A1 or R1C1 are accepted

$xlsx->Output("mynewfile.xlsx", "F"); // save the file

$xlsx->data('R1C1', 42, 'n', ['keep_formula' => True]);