本文整理匯總了PHP中InstallUtil::runFromInstallCommand方法的典型用法代碼示例。如果您正苦於以下問題:PHP InstallUtil::runFromInstallCommand方法的具體用法?PHP InstallUtil::runFromInstallCommand怎麽用?PHP InstallUtil::runFromInstallCommand使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類InstallUtil
的用法示例。
在下文中一共展示了InstallUtil::runFromInstallCommand方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: run
/**
* Execute the action.
* @param array command line parameters specific for this command
*/
public function run($args)
{
set_time_limit('7200');
if (!isset($args[0]) || !isset($args[1]) || !isset($args[2]) || !isset($args[3]) || !isset($args[4]) || !isset($args[5])) {
$this->usageError('The database user, database name, password, host, port and super user password must be specified.');
}
if (!isset($args[6]) || !isset($args[7])) {
$this->usageError('the hostInfo and scriptUrl parameters must be specified.');
}
if (isset($args[8]) && $args[8] != 'demodata') {
$this->usageError('Invalid parameter specified. If specified the 9th parameter should be \'demodata\'');
}
if (isset($args[9]) && intval($args[9]) < 1) {
$this->usageError('Invalid parameter specified. If specified the 10th parameter should be integer and greater then 0');
}
if (Yii::app()->isApplicationInstalled()) {
$this->usageError('The installation is marked as being already completed. Cannot run the installer.');
}
// set hostInfo and scriptUrl for code that uses createUrl, createAbsoluteUrl, themeManager->baseUrl, etc...
Yii::app()->request->hostInfo = $args[6];
Yii::app()->request->scriptUrl = $args[7];
echo "\n";
InstallUtil::runFromInstallCommand($args, true);
}