PHP create friendly url php - Net-Raft.com

Welcome aboard! We are happy you are here and wish you good net-raft!




Just a Web Code Solution
join us

create friendly url in php


 731

Show ResultPHP


3

<!DOCTYPE html>
<html lang="en-US">
<head>
</head>
<body>

<?php

function CreateSeoURL($string, $wordLimit = 0){

$separator = '-';

if($wordLimit != 0){
$wordArr = explode(' ', $string);
$string = implode(' ', array_slice($wordArr, 0, $wordLimit));
}

$quoteSeparator = preg_quote($separator, '#');

$trans = array(
'&.+?;' => '',
'[^\w\d _-]' => '',
'\s+' => $separator,
'('.$quoteSeparator.')+'=> $separator
);

$string = strip_tags($string);
foreach ($trans as $key => $val){
$string = preg_replace('#'.$key.'#i'.(UTF8_ENABLED ? 'u' : ''), $val, $string);
}

$string = strtolower($string);

return "https://$_SERVER[SERVER_NAME]/" . trim(trim($string, $separator));
}

$Title = 'How to get input field value using PHP';

echo CreateSeoURL($Title, 6) . "</p>"; // with word limit

echo CreateSeoURL($Title);

?>

</body>
</html>


By        
The power of the user (%)
8%

Show ResultPHP


2

<!DOCTYPE html>
<html lang="en-US">
<head>
</head>
<body>

<?php

function friendlyUrl($title){

$url = $title;
$url = preg_replace('~[^\\pL0-9_]+~u', '-', $url);
$url = trim($url, "-");
$url = iconv("utf-8", "us-ascii//TRANSLIT", $url);
$url = strToLower($url);
$url = preg_replace('~[^-a-z0-9_]+~', '', $url);
return "https://$_SERVER[SERVER_NAME]/" . $url;

}

?>

<?php

echo friendlyUrl("RewriteRule ^article in php");

?>

</body>
</html>


By        
The power of the user (%)
10%



The most helpful PHP solutions

detect browser phpdetect browser phpPHP

Click to see more ...

  4.6K     408

create QR code phpcreate QR code phpPHP

Click to see more ...

  3K     289

create relative date phpcreate relative date phpPHP

Click to see more ...

  2.1K     264

drag and drop upload file using phpdrag and drop upload file using phpPHP

Click to see more ...

  2.7K     253

delete array item phpdelete array item phpPHP

Click to see more ...

  2.4K     245

detect ie phpdetect ie phpPHP

Click to see more ...

  1.6K     213

detect speed internet phpdetect speed internet phpPHP

Click to see more ...

  1.6K     198

get current url phpget current url phpPHP

Click to see more ...

  1.7K     197

get meta tag phpget meta tag phpPHP

Click to see more ...

  1.4K     193

Get real client country using php ?Get real client country using php ?PHP

Click to see more ...

  1.4K     181

Welcome aboard!
We are happy you are here and
wish you good net-raft!