PHP code example of johnbillion / query-monitor

1. Go to this page and download the library: Download johnbillion/query-monitor 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/ */

    

johnbillion / query-monitor example snippets


do_action( 'qm/debug', 'This happened!' );

// Start the 'foo' timer:
do_action( 'qm/start', 'foo' );

// Run some code
my_potentially_slow_function();

// Stop the 'foo' timer:
do_action( 'qm/stop', 'foo' );

use GuzzleHttp\HandlerStack;
use GuzzleHttp\Client;

// Add Query Monitor middleware to your Guzzle client
$stack = HandlerStack::create();
$stack->push(QM_Collector_HTTP::guzzle_middleware());
$client = new Client(['handler' => $stack]);

// All requests will now appear in Query Monitor
$response = $client->get('https://api.example.com/data');