PHP code example of williamsantana / tableforshell
1. Go to this page and download the library: Download williamsantana/tableforshell 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/ */
williamsantana / tableforshell example snippets
PHP ^5.3
curl -s http://getcomposer.org/installer | php
php composer.phar
$htmlString = file_get_contents('some-html-table.html');
$TableForShell = new TableForShell();
$TableForShell->tableHTMLToShell($htmlString);
php