Which PHP function can be used to strip tags from a string, often used to prevent XSS attacks?
- strip_tags()
- htmlspecialchars()
- htmlentities()
- xss_clean()
strip_tags() is used to remove HTML and PHP tags from a string, making it a useful tool for preventing cross-site scripting (XSS) attacks.
Loading...
Related Quiz
- What is the purpose of the array_reverse() function in PHP?
- In a form, what should the enctype attribute be set to for uploading files?
- In PHP, which of the following keywords is used to access properties and methods of a parent class from a child class?
- A common method to prevent stored XSS attacks is to store user input in its ________ form.
- How do you insert data into a MySQL table using PHP?