topical media & game development

talk show tell print

professional-search-08-seophp-include-sanitize.inc.php / php



  <?php
  
  // sanitizes the HTML code in inputHTML
  function sanitizeHTML(
      inputHTML, 
      allowed_tags = array('<h1>', '<b>', '<i>', '<a>', 
                            '<ul>', '<li>', '<pre>', '
', '<blockquote>', '<img>')) { _allowed_tags = implode('', allowed_tags); inputHTML = strip_tags(inputHTML, _allowed_tags); return preg_replace('#<(.*?)>#ise', "'<' . removeBadAttributes('\\1') . '>'" , inputHTML); } // removes the unallowed attributes from inputHTML function removeBadAttributes(inputHTML) { // define the list of unallowed attributes bad_attributes = 'onerror|onmousemove|onmouseout|onmouseover|' . 'onkeypress|onkeydown|onkeyup|javascript:'; // remove the bad attributes and return the result return stripslashes(preg_replace("#(bad_attributes)(\s*)(?==)#is" , 'SANITIZED', inputHTML)); } ?>


(C) Æliens 20/2/2008

You may not copy or print any of this material without explicit permission of the author or the publisher. In case of other copyright issues, contact the author.