定制 carica/phpcss 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

carica/phpcss

最新稳定版本:2.0.0

Composer 安装命令:

composer require carica/phpcss

包简介

An css selector parser and converter

README 文档

README

Build Status License Total Downloads Latest Stable Version Latest Unstable Version

Thanks to Benjamin Eberlei, Bastian Feder and Jakob Westhoff for ideas and concepts.

PhpCSS is a parser for CSS 3 selectors. It parses them into an AST and allows them to compile the AST to CSS selectors or Xpath expressions.

The main target of this project is the possibilty to convert CSS selectors into Xpath expressions.

Demo

A small demo application can be found at: http://xpath.thomas.weinert.info/

Installation

PhpCss is available on Packagist: Carica/PhpCss. Add it to you composer.json and update.

Basic Usage

Get CSS selector as Xpath expression

$expression = PhpCss::toXpath($selector); 

Reformat/Validate CSS Selector

$selector = PhpCss::reformat($selector); 

Get the AST

$ast = PhpCss::getAst($selector); 

FluentDOM

FluentDOM 5 allows to inject a callback to convert selectors. If you have FluentDOM and PhpCss installed in your project, you can use CSS selectors in FluentDOM:

$fd = FluentDOM::QueryCss($xml); $fd ->find('td:nth-of-type(even)') ->addClass('even'); 

Supported

Selectorto CSSto Xpath
*
E
ns|*
ns|E
Attributes
E[foo]
E[foo="bar"]
E[foo~="bar"]
E[foo^="bar"]
E[foo$="bar"]
E[foo*="bar"]
E[foo|="bar"]
Structural Pseudo Classes
E:root
E:nth-child(42)
E:nth-last-child(42)
E:nth-of-type(42)
E:nth-last-of-type(42)
E:first-child
E:last-child
E:first-of-type
E:last-of-type
E:only-child
E:only-of-type
E:empty
Link Pseudo Classes
E:link
E:visited
User Action Pseudo Classes
E:active
E:hover
E:focus
Target Pseudo Class
E:target
Language Pseudo Class
E:lang(fr)
UI Element states Pseudo Class
E:enabled✓ (not disabled)
E:disabled✓ (attribute)
E:checked✓ (attribute)
Pseudo Elements
E:first-line
E:first-letter
E:before
E:after
Class Selector
E.warning
Id Selector
E#myid
Negation Pseudo Class
E:not(s)
Combinators
E F
E > F
E + F
E ~ F
jQuery
:contains("text")
:has(s)
:gt(42)
:lt(42)
:odd
:even

统计信息

  • 总下载量: 67.82k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 74
  • 点击次数: 6
  • 依赖项目数: 3
  • 推荐数: 0

GitHub 信息

  • Stars: 72
  • Watchers: 8
  • Forks: 10
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-04