An intuitive utility to help find the CSS path to UI elements on a webpage. These paths are used frequently in a variety of front-end development and QA automation tasks.
One of a set of tools we're offering as a way of saying thank you for being a part of the community.
Maybe someone adds some HTML etc to their input and you want to remove it then you could use regex to remove it.
preg_replace('/<[^>]*>/', '', $input)
But only if it shouldn't be there.
You could just leave everything as is and then escape anything untoward when you send it to the browser.