w3resource

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

php-string-quotemeta()

Example:

<?php
$input_string = 'w3resource.com';
echo quotemeta($input_string);
?> 

Output:

w3resource\.com

View the example in the browser

See also

PHP Function Reference

Previous: quoted_printable_ decode
Next: rtrim



Become a Patron!

Follow us on Facebook and Twitter for latest update.

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