mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 19:51:42 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@10579 201d5d3c-b55e-5fd7-737f-ddc643e51545
16 lines
386 B
PHP
16 lines
386 B
PHP
<?php
|
|
|
|
chdir(dirname(__FILE__));
|
|
|
|
//require_once '../library/HTMLPurifier.path.php';
|
|
shell_exec('php ../maintenance/generate-schema-cache.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;
|
|
|
|
// vim: et sw=4 sts=4
|