Download the PHP package jeremiah-shaulov/joyquery-php without Composer
On this page you can find all versions of the php package jeremiah-shaulov/joyquery-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download jeremiah-shaulov/joyquery-php
More information about jeremiah-shaulov/joyquery-php
Files in jeremiah-shaulov/joyquery-php
Download jeremiah-shaulov/joyquery-php
More information about jeremiah-shaulov/joyquery-php
Files in jeremiah-shaulov/joyquery-php
Vendor jeremiah-shaulov
Package joyquery-php
Short Description CSS selectors query language for DOMDocument, with XPath axes extension
License MIT
Homepage https://github.com/jeremiah-shaulov/joyquery-php
Package joyquery-php
Short Description CSS selectors query language for DOMDocument, with XPath axes extension
License MIT
Homepage https://github.com/jeremiah-shaulov/joyquery-php
Please rate this library. Is it a good library?
Informations about the package joyquery-php
joyquery-php
CSS selectors query language for DOMDocument, with XPath axes extension.
Installation
Create a directory for your application, cd
to it, and issue:
Example
Nonstandard features
The following features are not found in standard, but implemented:
E[foo!="bar"]
- an E element that either doesn't have "foo" attribute, or has it with value not equal to "bar"E:not(s)
- an E element that does not match selector s. Selector s can be any simple or complex (standard requires simple)E:has(s)
- an E element that also matches selector sE:any(s1, s2, ...)
- an E element that also matches any of given selectors s1, s2, ...E:input
- an E element which is INPUT, SELECT, TEXTAREA or BUTTON:from(n)
- When applied to a simple selector, e.g. E.cls, selects only elements starting from number n in matched set:limit(n)
- When applied to a simple selector, e.g. E.cls, limits matched set to no more than n elementsaxis::E
- XPath-like axis, see below:php-func-name
- PHP function to test elements, see below
Axes
Joyquery extends CSS selectors language with XPath-like axes. Example:
There are the following axes:
- self::
- child::
- descendant::
- descendant-or-self::
- parent::
- ancestor::
- ancestor-or-self::
- following-sibling::
- first-following-sibling::
- preceding-sibling::
- first-preceding-sibling::
Extension functions
You can extend joyquery with custom functions.
All versions of joyquery-php with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.2
The package jeremiah-shaulov/joyquery-php contains the following files
Loading the files please wait ....