mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-11-09 23:28:42 +00:00
11 lines
225 B
PHP
11 lines
225 B
PHP
|
<?php
|
||
|
|
||
|
require_once '../library/HTMLPurifier.path.php';
|
||
|
require_once 'HTMLPurifier.includes.php';
|
||
|
|
||
|
$begin = xdebug_memory_usage();
|
||
|
|
||
|
$schema = HTMLPurifier_ConfigSchema::makeFromSerial();
|
||
|
|
||
|
echo xdebug_memory_usage() - $begin;
|