alex198710 / csstidy
封装了 CsTidy 库
dev-master
2014-08-22 20:21 UTC
Requires
- php: >=5.3.2
This package is not auto-updated.
Last update: 2024-09-24 01:58:33 UTC
README
- 封装 CSSTidy
- CSSTidy 1.3 csstidy.sourceforge.net
PHP > 5.3
Composer.json
Add this line:
"alex198710/csstidy": "dev-master"
然后可以这样使用
<?php
include('class.csstidy.php');
$css_code = '
a {
color:black;
background-color:blue;
}';
$css = new csstidy();
$css->set_cfg('remove_last_;',TRUE);
$css->parse($css_code);
echo $css->print->formatted();
?>