acwpd / tools

用于PHP项目的实用PHP工具

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

This package is auto-updated.

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


README

有用的工具(PHP和JS)用于ACWPD项目(或您自己的!)

用法

composer require acwpd/tools

...然后引用您想使用的工具

  • JsonToTable

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

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