acwpd/tools

Uesful PHP tools for PHP projects

Installs: 30

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/acwpd/tools

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

This package is auto-updated.

Last update: 2025-09-22 08:44:08 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);