expertissim / google-search-operators
abstraction and parser for create and use search based on Google Search Operators systems
Installs: 18 549
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 3
Open Issues: 0
pkg:composer/expertissim/google-search-operators
Requires
- php: >=5.5
This package is not auto-updated.
Last update: 2025-10-29 15:27:12 UTC
README
Very simple abstraction and parser for create and use search based on Google Search Operators systems : https://support.google.com/websearch/answer/2466433?hl=en
key:value+key:min..max-key:value
Key Delimiter
| delimiter | meaning |
|---|---|
| + | AND |
| - | AND NOT |
| | | OR (not exists in Google Operators) |
Value Delimiter
| delimiter | meaning |
|---|---|
| : | IS = |
| :< | IS < |
| :> | IS > |
| :>= | IS >= |
| :>= | IS <= |
| :val1..val2 | BETWEEN val1 AND val2 |
| :val1.val2.val3 | IN val1 AND val2 ANd val3 (not exists in Google Operators) |
WIP ...