PHP code example of toggenation / php-info

1. Go to this page and download the library: Download toggenation/php-info 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/ */

    

toggenation / php-info example snippets


// in a view template


/**
 * @var App\View\AppView $this
 */

$this->loadHelper('PhpInfo.Info');
$this->Html->css('PhpInfo.styles', ['block' => 'css']);

// pulls in src/templates/element/php-info.php
<?= $this->element('PhpInfo.php-info');

// in src/View/AppView.php
/**
 * Application View
 *
 * Your application's default view class
 * @property \PhpInfo\View\Helper\InfoHelper $Info
 * @link https://book.cakephp.org/4/en/views.html#the-app-view
 */
class AppView extends View
{


// add the @var line


/**
 * @var App\View\AppView $this
 */