acwpd/tools

Uesful PHP tools for PHP projects

V0.1.6 2018-12-21 17:14 UTC

This package is auto-updated.

Last update: 2024-09-22 06:20:13 UTC


README

Useful Tools (php and JS) for ACWPD projects (or your own!)

Usage

composer require acwpd/tools

...and then refence the tool you want to use:

  • JsonToTable

    • $table = new ACWPD\Tools\JsonTotable($JSON);
      // then
      $html = $table->build();
      // or ...
      echo $table;
      
  • DbErrorChecker

    • $data = ACWPD\Tools\DbErrorChecker::CheckPrepared($db, $PreparedStatement);