PHP: quotemeta() function
PHP: Quote meta characters
The quotemeta() function is used to add backslash character (\) before meta characters i.e. ' .', '\', '+', '*', '?', '[', '^', ']',' (', '$', ')' in a string.
Version:
(PHP 4 and above)
Syntax:
quotemeta (input_string)
Parameter:
Name | Description | Required / Optional |
Type |
---|---|---|---|
input_string | The input string. | Required | string |
Return value:
Returns the string with meta characters quoted.
Value Type: String.
Pictorial Presentation
Example:
<?php
$input_string = 'w3resource.com';
echo quotemeta($input_string);
?>
Output:
w3resource\.com
View the example in the browser
See also
Previous: quoted_printable_ decode
Next: rtrim
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/php/function-reference/quotemeta.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics