PHP Класс Prado\TShellApplication

TShellApplication is the base class for developing command-line PRADO tools that share the same configurations as their Web application counterparts. A typical usage of TShellApplication in a command-line PHP script is as follows: require_once('path/to/prado.php'); $application=new TShellApplication('path/to/application.xml'); $application->run(); perform command-line tasks here Since the application instance has access to all configurations, including path aliases, modules and parameters, the command-line script has nearly the same accessibility to resources as the PRADO Web applications.
С версии: 3.1.0
Автор: Qiang Xue ([email protected])
Наследование: extends TApplication
Показать файл Открыть проект

Открытые методы

Метод Описание
run ( ) Runs the application.

Описание методов

run() публичный метод

This method overrides the parent implementation by initializing application with configurations specified when it is created.
public run ( )