jezzdk/detect-cms
最新稳定版本:1.0.2
Composer 安装命令:
composer require jezzdk/detect-cms
包简介
PHP Library for detecting CMS
README 文档
README
PHP Library for detecting CMS
Install
Add to your composer.json
{
"repositories":[
{
"type": "vcs",
"url": "git@github.com:Krisseck/Detect-CMS.git"
}
],
"require":{
"Detect-CMS":"1.0.*"
}
}
How to use:
include(__DIR__ . "/vendor/autoload.php");
$domain = "http://google.com";
$cms = new \DetectCMS\DetectCMS($domain);
if($cms->getResult()) {
echo "Detected CMS: ".$cms->getResult();
} else {
echo "CMS couldn't be detected";
}
统计信息
- 总下载量: 42
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2019-09-13