1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-10-14 21:54:24 +02:00
Files
php-htmlpurifier/library/HTMLPurifier/IDAccumulator.php
2006-07-30 16:01:24 +00:00

15 lines
205 B
PHP

<?php
class HTMLPurifier_IDAccumulator
{
var $ids = array();
function add($id) {
if (isset($this->ids[$id])) return false;
return $this->ids[$id] = true;
}
}
?>