carono/php-adblock-parser

PHP parser for Adblock Plus filters

v0.1.7 2019-10-20 09:09 UTC

This package is auto-updated.

Last update: 2024-04-20 20:30:14 UTC


README

Build Status Scrutinizer Code Quality Code Coverage

Usage

To learn about Adblock Plus filter syntax check these links:

  1. Get filter rules somewhere: write them manually, read lines from a file downloaded from EasyList, etc.:

    $rules = [
        "||ads.example.com^",
        "@@||ads.example.com/notbanner^$~script",
    ];
  2. Create AdblockRules instance from the rules array:

    use Limonte\AdblockParser;
    
    $adblockParser = new AdblockParser($rules);
    $adblockParser->addRules($anotherRules);
  3. Use this instance to check if an URL should be blocked or not:

    $adblockParser->shouldBlock("http://ads.example.com"); // true
    $adblockParser->shouldBlock("http://non-ads.example.com"); // false

Related projects