本文整理汇总了PHP中Cli::question方法的典型用法代码示例。如果您正苦于以下问题:PHP Cli::question方法的具体用法?PHP Cli::question怎么用?PHP Cli::question使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cli
的用法示例。
在下文中一共展示了Cli::question方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: skel
public function skel()
{
Cli::enableHelp();
$dir = opendir(getcwd());
while (false !== ($file = readdir($dir))) {
if ($file != '.' && $file != '..' && $file != 'data') {
Cli::question("The current folder is not empty, do you want to continue?");
break;
}
}
closedir($dir);
Cli::pinfo("Create new CF project");
System::copyTree($this->getDir() . DIRECTORY_SEPARATOR . "project", getcwd());
$this->updateFiles();
chmod(getcwd() . DIRECTORY_SEPARATOR . "setup", 0755);
System::ensureDir(DATA_DIR);
$conf = Config::getInstance();
$conf->load(CONFIG_DIR . DIRECTORY_SEPARATOR . "config.json");
foreach ($conf->get("plugins", array()) as $plugin) {
Plugins::add($plugin);
}
Cli::install();
Options::updateConf(array("DEBUG" => true));
}