PHP code example of qingclouds / thinklib

1. Go to this page and download the library: Download qingclouds/thinklib library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

qingclouds / thinklib example snippets



namespace app\api\controller;

use Qingclouds\Thinklib\Api\JSDBC;

class Query
{

  /**
   * curd
   */
  public function jsdbc()
  {

    $jsdbc = new JSDBC();
    $jsdbc->query();
  }