What Is Friendly URL?
A friendly URL is a Web address that is easy to read and includes words that describe the content of the webpage. Friendly URL Is Also Known As Slug URL. Creating Slug URL From String Is Known As Slugify. This type of URL can be “friendly” in two ways.
1) It can help visitors remember the Web address
2) it can help describe the page to search engines.
How To Create Friendly URL In PHP?
Creating Slug URL From String Is Known As Slugify.
How To Slugify a String In PHP?
Here is a snippet for generating a Friendly URL / Slug in PHP
function slugify($string){ return strtolower(trim(preg_replace('/[^A-Za-z0-9-]+/', '-', $string), '-')); }
Here I have Created A Function To Which I will Pass a String And It will return me a Friendly URL / Slug.
You Can Use It in Your Code As:
<?php echo slugify('!hello Everyone!? how are you???'); ?>
The Output of the Above Code Will Be :
hello-everyone-how-are-you
Also Check Out :

Top 5 Emerging AI Trends To Watch Out In 2023
Introduction Artificial Intelligence (AI) continues to disrupt various industries, introducing new possibilities and efficiencies at…

Generative AI: An Introduction to the Benefits, Applications, and Risks
What is Generative Artificial Intelligence? Generative AI, or GAI, is a type of machine learning…
Follow Us On Social Media:

I am passionate about my work. Because I love what I do, I have a steady source of motivation that drives me to do my best. In my last job, this passion led me to challenge myself daily and learn new skills that helped me to do better work
[…] Also Check Out: How to Make Friendly URL in PHP? How to Slugify a String in PHP? […]