PHP code example of icewind / interceptor
1. Go to this page and download the library: Download icewind/interceptor 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/ */
icewind / interceptor example snippets
use Icewind\Interceptor\Interceptor;
$interceptor = new Interceptor();
$interceptor->addWhiteList(__DIR__ . '/src');
$interceptor->addHook(function($code) {
return str_replace('foo', 'bar', $code);
});
$interceptor->setUp();