```php title="PHP" tables as $table) { echo "Table on page " . $table->page_number . " with " . count($table->cells) . " rows\n"; echo "Markdown representation:\n"; echo $table->markdown . "\n"; // Access cell data foreach ($table->cells as $rowIndex => $row) { foreach ($row as $colIndex => $cellContent) { echo "Cell[$rowIndex][$colIndex]: $cellContent\n"; } } } ?> ```