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 eregi_replace() Function.
The eregi_replace() function works exactly like the PHP ereg_replace() function, except that the search for pattern in the strings are not case sensitive.
The eregi_replace() function works exactly like the PHP ereg_replace() function, except that the search for pattern in the strings are not case sensitive.
READ: PHP ereg() Function
Syntax
The following is the syntax to use the PHP eregi_replace() function -
string eregi_replace (string pattern, string replacement, string originalstring);
Return Value
- After the replacement has occurred the modified string will be returned.
- If no matches are found, the string will not be changed.
Example
Following is a simple example -
<?php $copy_date = "Copyright 2020"; $copy_date = eregi_replace("([a-z]+)", "&Copy;", $copy_date); print $copy_date; ?>
Output
When the above code is executed, it will produce the following result -
&Copy; 2020
READ: PHP eregi() Function
Alright guys! This is where we are rounding up for this tutorial post. In our next tutorial guide, we will be discussing about the PHP split() Function.
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.