mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 23:28:42 +00:00
13 lines
307 B
PHP
13 lines
307 B
PHP
|
<?php
|
||
|
|
||
|
ini_set('xdebug.trace_format', 1);
|
||
|
ini_set('xdebug.show_mem_delta', true);
|
||
|
|
||
|
xdebug_start_trace(dirname(__FILE__) . '/Trace');
|
||
|
require_once '../library/HTMLPurifier.auto.php';
|
||
|
|
||
|
$purifier = new HTMLPurifier();
|
||
|
|
||
|
$data = $purifier->purify(file_get_contents('samples/Lexer/4.html'));
|
||
|
xdebug_stop_trace();
|