PHP code example of idealogica / php-adblock-parser

1. Go to this page and download the library: Download idealogica/php-adblock-parser library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

idealogica / php-adblock-parser example snippets


   $rules = [
       "||ads.example.com^",
       "@@||ads.example.com/notbanner^$~script",
   ];
   

   use Limonte\AdblockParser;

   $adblockParser = new AdblockParser($rules);
   $adblockParser->addRules($anotherRules);
   

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