What are some good PHP html (input) sanitizers?
Preferably, if something is built in - I\'d like to us that.
UPDATE:
Per the request
I've always used PHP's addslashes() and stripslashes() functions, but I also just saw the built-in filter_var() function (link). Looks like there are quite a few built-in filters.