5 Star 8 Fork 3

Bang/easyman

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
worker 480 Bytes
一键复制 编辑 原始数据 按行查看 历史
Bang 提交于 2021-05-21 17:05 . 初始化
#!/usr/bin/env php
<?php
$command = $argv[1] ?? '';
if(empty($command)){
echo "Please input command's name";
return;
}
require('./vendor/autoload.php');
$commandConfig = require_once("./config/command.php");
require_once __DIR__ . '/vendor/autoload.php';
if( empty($commandConfig) || !isset($commandConfig[$command])){
echo "Unkown command :" . $command;
return;
}
$obj = $commandConfig[$command];
//调用命令
call_user_func([new $obj , 'handle']);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/tantingchao/easyman.git
[email protected]:tantingchao/easyman.git
tantingchao
easyman
easyman
master

搜索帮助