This commit is contained in:
2024-06-14 15:55:36 +03:00
parent 5468b1d286
commit 987effd67f
35 changed files with 1808 additions and 245 deletions

23
table2.php Normal file
View File

@ -0,0 +1,23 @@
<?php
use src\debug\Debug;
require_once "vendor/autoload.php";
$json = file_get_contents(__DIR__ . '/vendor/itguild/tables/simple.json');
$json2 = file_get_contents(__DIR__ . '/mySimple.json');
$table = new \Itguild\Tables\ListJsonTable($json);
$table2 = new \Itguild\Tables\ListJsonTable($json2);
$table->create();
$table->render();
$table2->create();
$table2->render();
//$table->beginTable();
/*echo "<pre>";
print_r($table);*/