Skip to content

Instantly share code, notes, and snippets.

View csskevin's full-sized avatar

Kevin Saiger csskevin

View GitHub Profile
@csskevin
csskevin / table2array.php
Last active September 6, 2019 23:43
Just a little prototype for converting html tables to associative arrays
<?php
class Table2Array
{
public static function convert2HorizontalTable($html)
{
$dom = new DOMDocument;
@$dom->loadHTML($html);
$xpath = new DOMXPath($dom);
$tables = array();