PHP Classes

File: yii

Recommend this page to a friend!
  Classes of Insolita   PHP PostgreSQL JSONB Performance   yii   Download  
File: yii
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP PostgreSQL JSONB Performance
Measure the performance of PostgreSQL JSONB fields
Author: By
Last change:
Date: 1 year ago
Size: 314 bytes
 

Contents

Class file image Download
#!/usr/bin/env php
<?php
define
('YII_ENV', 'prod');
define('YII_DEBUG', false);
require
__DIR__.'/vendor/autoload.php';
require(
__DIR__ . '/vendor/yiisoft/yii2/Yii.php');
$config = require(__DIR__ . '/app/config/config.php');

$app = new yii\console\Application($config);
$exitCode = $app->run();
exit(
$exitCode);