简短的答案:
是否有任何现有的图书馆?
不,据我所知,没有人会为您做到这一点“开箱即用”。
或者任何有用的库来帮助解决这个问题?
是的,有json_decode
和uksort
:
$specificity = function($selector) {
/*
* @link http://www.w3.org/TR/selectors/#specificity
*
* 9. Calculating a selector's specificity
*
* A selector's specificity is calculated as follows:
*
* * count the number of ID selectors in the selector (= a)
* * count the number of class selectors, attributes selectors, and
* pseudo-classes in the selector (= b)
* * count the number of type selectors and pseudo-elements in the
* selector (= c)
* * ignore the universal selector
*
* Selectors inside the negation pseudo-class are counted like any other,
* but the negation itself does not count as a pseudo-class.
*
* Concatenating the three numbers a-b-c (in a number system with a large
* base) gives the specificity.
*/
...
return (int) $result;
}
$compare = function($a, $b) use ($specificity) {
return $specificity($a) - $specificity($b)
};
$array = json_decode('{"yours" : "json"}', true);
uksort($array, $compare);
echo json_encode((object) $array);
正如这个代码示例所示,它只解释了如何计算注释中的特异性,它不包含代码。那只是因为我手头没有该代码,但我已经在规范中放入了这是如何完成的(至少对于 CSS 3)。
如果您正在寻找 CSS 选择器解析器,我知道 XDOM(因为我编写了它)。它在 github 上可用:https ://github.com/hakre/XDOM - 这是一个 100% CSS 3 兼容的 CSS 选择器解析器。
据我所知,就现成的解决方案而言,这就是您今天所获得的大部分内容。我所知道的所有其他 CSS 选择器解析器都与 CSS 3 标准不完全兼容,因为它们不遵循 W3C 规范。这可能对您有好处:如果您不需要严格的 CSS3 兼容性,您可能会发现一些其他代码块已经满足您的需求。