Hello folks! welcome back to a new section of our tutorial on PHP. In this tutorial guide, we are going to be studying about the PHP preg_quote() Function.
The preg_quote() function takes str and put a backslash in front of every character that is part of the regular expression syntax.
The preg_quote() function takes str and put a backslash in front of every character that is part of the regular expression syntax.
READ: PHP preg_grep() Function
Syntax
The following below is the syntax for the preg_quote() function -
string preg_quote (string $str [, string $delimiter] );
Return Value
- Returns a quoted string
Example
Following is a simple example -
<?php $keywords = '$100 for a g3/600'; $keywords = preg_quote($keywords, '/'); echo $keywords; ?>
Output
When the above code is executed, it will produce the following result -
\$100 for a g3\/600
Alright guys! This is where we are rounding up for this tutorial post. In our next tutorial guide, we will be discussing about the Error and Exception Handling in PHP.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.