unikent / lib-php-classmark
该包最新版本(1.2)没有提供许可证信息。
PHP 类标记助手。
1.2
2017-09-28 13:36 UTC
Requires
- php: >=5.3
Requires (Dev)
This package is not auto-updated.
Last update: 2024-09-14 19:36:45 UTC
README
完整API文档在此处可用:http://unikent.github.io/lib-php-classmark/
PHP库,帮助开发者处理类标记。
将此添加到你的composer require中
- "unikent/lib-php-classmark": "dev-master"
然后可以这样比较类标记:
$parser = new \unikent\Classmark\Classmark();
$classmark = new \unikent\Classmark\Classmark("C900x");
$classmark2 = new \unikent\Classmark\Classmark("C800x");
if ($classmark.compareTo(classmark2)) {
echo "Well done!";
}