PHP FILTER_SANITIZE_MAGIC_QUOTES Filter
Complete PHP Filter Reference
Definition and Usage
The FILTER_SANITIZE_MAGIC_QUOTES filter performs the
addslashes() function to a
string.
This filter sets backslashes in front of predefined characters.
The predefined characters are:
- single quote (')
- double quote (")
- backslash (\)
- NULL
FILTER_SANITIZE_MAGIC_QUOTES info:
- Name: "magic_quotes"
- ID-number: 521
Example
<?php
$var="Peter's here!";
var_dump(filter_var($var, FILTER_SANITIZE_MAGIC_QUOTES));
?>
|
The output of the code will be:
string(14) "Peter\'s here!"
|
Complete PHP Filter Reference
|
|
Get Your Diploma!
W3Schools' Online Certification Program is the perfect solution for busy
professionals who need to balance work, family, and career building.
The HTML Certificate is for developers who want to document their knowledge of HTML, XHTML, and CSS.
The JavaScript Certificate is for developers who want to document their knowledge of JavaScript and the HTML DOM.
The XML Certificate is for developers who want to document their knowledge of XML, XML DOM and XSLT.
The ASP Certificate is for developers who want to document their knowledge of ASP, SQL, and ADO.
The PHP Certificate is for developers who want to document their knowledge of PHP and SQL (MySQL).
|
|