加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
start.php 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
逗比部长二 提交于 2019-05-27 16:46 . add -i option;
<?php
include_once "autoLoad.php";
function checkVersion()
{
if(!function_exists('curl_version')){
die("PHP version\e[31m must enabled curl extension\e[0m\n");
}
$curlVersion = curl_version()['version'];
$phpVersion = version_compare(PHP_VERSION, '7.1.3', '>=');
if(('7.37.0' > $curlVersion) && !$phpVersion){
die("PHP version\e[31m must >= 7.1 and curl version >= 7.37.0\e[0m\n");
}
}
checkVersion();
$argvOpt = \core\Command\Console::initArgv();
if(empty($argvOpt)){
printf("请传入参数 \n");
die;
}
$url = $argvOpt['url'];
$domain = \core\Http\Domain::match($url);
$class = null;
if(empty($domain)){
exit(0);
}
if(in_array($domain, ['91p25', '91porn'])){
$domain = 'Porn';
}
$className = "\core\Platform\\$domain\\" . $domain;
$classFile = __DIR__ . str_replace('\\', DIRECTORY_SEPARATOR, $className);
if(!file_exists($classFile.'.php')){
echo("\033[31m No Support \033[0m".PHP_EOL);
exit(0);
}
/**
* @var $class \core\Common\Downloader
*/
$class = new $className($url);
$class->download($argvOpt);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化