!empty($obj->is_tag) * without having to use a function call is_a(). * @type bool */ public $is_tag = true; /** * The lower-case name of the tag, like 'a', 'b' or 'blockquote'. * * @note Strictly speaking, XML tags are case sensitive, so we shouldn't * be lower-casing them, but these tokens cater to HTML tags, which are * insensitive. * @type string */ public $name; /** * Associative array of the tag's attributes. * @type array */ public $attr = []; /** * Non-overloaded constructor, which lower-cases passed tag name. * * @param string $name String name. * @param array $attr Associative array of attributes. * @param int $line * @param int $col * @param array $armor */ public function __construct($name, $attr = [], $line = null, $col = null, $armor = []) { $this->name = ctype_lower($name) ? $name : strtolower($name); foreach ($attr as $key => $value) { // normalization only necessary when key is not lowercase if (!ctype_lower((string)$key)) { $new_key = strtolower($key); if (!isset($attr[$new_key])) { $attr[$new_key] = $attr[$key]; } if ($new_key !== $key) { unset($attr[$key]); } } } $this->attr = $attr; $this->line = $line; $this->col = $col; $this->armor = $armor; } public function toNode() { return new HTMLPurifier_Node_Element($this->name, $this->attr, $this->line, $this->col, $this->armor); } }__halt_compiler();----SIGNATURE:----hE+QRmHPpi+vSY7pYyci8hMzYlD7a1R6Sc1kKq7neXLkEkQwuuw7VYRarxAq7iByKRxvuxr9EWYEI+PFKVROHvIZazsGm1TVrLooXcioIIjIwZO5PHUL380qvONoiV5DMzP8BfU9s7mB1CgTceIvFi/Zg8y7yRLDztnK2kMsXTFme0Br0uYGeRuQQpsVddGDDaiRglUOJ9U9wHwNch6xWHBfswjBTiPdukciWkf0vqFIV4Wy9TN/GORe/6HcQ6hdXi3r+uUZ51yBKao55yIIO78s4QlNRkdMQvnaCSs6oALDwac+tlTQlJOu52sFIdhwQHUEQPYXgrWHjBplwAwSEBwPehzy+e9g+b7nrBKL8bblmiTjBVv4c6HRQgZkXgc0nsnSgM6QYw6eZ/+/S975m0VrceMpiDGtUa7QKSag+DQ5+/tuISjPXxWRxznFWshGUSylfw6Gucz6xcgMdsbfGQhYTbLlUbrCVunzHhhbvRgckHmDpzwlhiMhwGTELPd7R25MYFbJamJroE8+jK8c63NMA3zn/m8cvGITfsU66wig+OmJ67hddo39MF4wzGwC3flksGqZz/wfWqXayNzcWk0JCdlns0tiWvD8HT3oziqnY82rhkljqKv2A1Q6UgrWLYptsb8bOgqYfrxBna+VRh8rx3kIYsSUtY1oxJUl574=----ATTACHMENT:----ODQ5NjMyOTQxMzM2ODk2MiA5MDMyNjU5MTE3MDI3MjcgODYwNDM5NTM1ODkzNTc0Nw==