How can I use php to strip all/any attributes from a tag, say a paragraph tag?
<p class="one" otherrandomattribute="two"> to <p>
|
How can I use php to strip all/any attributes from a tag, say a paragraph tag?
|
||||
|
|
|
Although there are better ways, you could actually strip arguments from html tags with a regular expression:
The above could probably be written in less characters, but it does the job (quick and dirty). |
|||
|
|
|
Strip attributes using SimpleXML (Standard in PHP5)
|
||||
|
|
|
HTML Purifier is one of the better tools for sanitizing HTML with PHP. |
|||
|
|
|
Here is one function that will let you strip all attributes except ones you want:
In example it would be:
or if you eg. want to keep "class" attribute:
|
|||
|
|
|
I honestly think that the only sane way to do this is to use a tag and attribute whitelist with the HTML Purifier library. Example script here:
This yields the following clean, standards-conforming HTML fragment:
In your case the whitelist would be:
|
|||
|
|
|
You might also look into html purifier. True, it's quite bloated, and might not fit your needs if it only conceirns this specific example, but it offers more or less 'bulletproof' purification of possible hostile html. Also you can choose to allow or disallow certain attributes (it's highly configurable). |
|||
|
|