PHP code example of inspector-apm / inspector-codeigniter
1. Go to this page and download the library: Download inspector-apm/inspector-codeigniter 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/ */
inspector-apm / inspector-codeigniter example snippets
class Filters extends BaseFilters
{
/**
* List of filter aliases that are always
* applied before and after every request.
*
* @var array<string, array<string, array<string, string>>>|array<string, list<string>>
*/
public array $globals = [
'before' => [
...,
'inspector',
],
'after' => [
...,
'inspector',
],
];
}