PHP code example of tomk79 / px2-report

1. Go to this page and download the library: Download tomk79/px2-report 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/ */

    

tomk79 / px2-report example snippets


$conf->funcs->processor->html = [

    /* 中略 */

    // px2-report
    // NGワード検出
    'tomk79\pickles2\px2report\found::ngwords('.json_encode([
        'nogood',
        'NoGood',
        'oo',
    ]).')' ,

    /* 中略 */

];

$conf->funcs->before_output = [

    /* 中略 */

    // px2-report
    // NGワード検出
    'tomk79\pickles2\px2report\found::ngwords('.json_encode([
        'nogood',
        'NoGood',
        'oo',
    ]).')' ,

    /* 中略 */

];