forked from codeigniter4/CodeIgniter4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathci.php
More file actions
executable file
·38 lines (30 loc) · 1.14 KB
/
Copy pathci.php
File metadata and controls
executable file
·38 lines (30 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env php
<?php
use CodeIgniter\CLI\CLI;
/**
* --------------------------------------------------------------------
* CodeIgniter command-line tools
* --------------------------------------------------------------------
* The main entry point into the CLI system and allows you to run
* commands and perform maintenance on your application.
*
* Because CodeIgniter can handle CLI requests as just another web request
* this class mainly acts as a passthru to the framework itself.
*/
// Grab the CLI class, though, so we can use it to provide user feedback.
require __DIR__.'/system/CLI/CLI.php';
// Grab our Console
require __DIR__.'/system/CLI/Console.php';
$console = new \CodeIgniter\CLI\Console();
// Refuse to run when called from php-cgi
if (substr(php_sapi_name(), 0, 3) == 'cgi')
{
die("The cli tool is not supported when running php-cgi. It needs php-cli to function!\n\n");
}
// We want errors to be shown when using it from the CLI.
error_reporting(-1);
ini_set('display_errors', 1);
// Show basic information before we do anything else.
$console->showHeader();
// fire off the command the main framework.
$console->run();