0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-01-09 23:41:52 +00:00
htmlpurifier/library/HTMLPurifier.stub.php

9 lines
244 B
PHP
Raw Normal View History

<?php
require_once 'HTMLPurifier.includes.php';
$config = HTMLPurifier_Config::createDefault();
if (isset($argv[1])) $config->loadIni($argv[1]);
$purifier = new HTMLPurifier($config);
echo $purifier->purify(file_get_contents('php://stdin'));