PHP code example of pointotech / code-igniter-tools

1. Go to this page and download the library: Download pointotech/code-igniter-tools 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/ */

    

pointotech / code-igniter-tools example snippets


use Pointotech\CodeIgniter\Tools\CodeIgniterRoutesFinder;

echo "# Routes\n\n";
foreach (CodeIgniterRoutesFinder::all_routes() as $route_url => $controller_method) {
  echo "- " . $route_url . ': ' . (is_string($controller_method) ? $controller_method : json_encode($controller_method)) . "\n";
}

echo "\n## Routing options\n\n";
$routes_options = CodeIgniterRoutesFinder::routing_options();
echo "- default_controller_url: " . $routes_options->default_controller_url() . "\n";
echo "- translate_uri_dashes: " . ($routes_options->translate_uri_dashes() ? "Yes" : "No") . "\n";