代码拉取完成,页面将自动刷新
<?php
declare(strict_types=1);
namespace app\command;
use think\console\Command;
use app\model\Conf as ConfModel;
class BaseCommand extends Command
{
public function loadConfig(){
$confModel = new ConfModel();
$configs = $confModel->select()->toArray();
$c = [];
foreach ($configs as $config) {
$c[$config['conf_key']] = $config['conf_value'];
}
config($c, 'startadmin');
}
protected function console($text, $break = true)
{
print_r($text . ($break ? PHP_EOL : ''));
}
protected function success($text, $break = true)
{
print_r(chr(27) . "[42m" . "$text" . chr(27) . "[0m" . ($break ? PHP_EOL : ''));
}
protected function error($text, $break = true)
{
print_r(chr(27) . "[41m" . "$text" . chr(27) . "[0m" . ($break ? PHP_EOL : ''));
}
protected function warning($text, $break = true)
{
print_r(chr(27) . "[43m" . "$text" . chr(27) . "[0m" . ($break ? PHP_EOL : ''));
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。