PHP shorten link 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

shorten link using php


 674

Show ResultPHP


2

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

<?php

function shortenLinksCallback($match){

return "<a href='$match[0]'>" . preg_replace(
'~(.{40}[a-z0-90]*.).{10,}([ˇa-z0-9;].*.{10,})~i',
'\\1...\\2',
$match[0]
) . "</a>";

}

/**
* @param string
* @return string
*/

function shortenLinks($text){

static $chars = "][;#%&+./0-9:=?a-z_~-";
return preg_replace_callback (
"(\\bhttps?://[$chars]+\\.[$chars]*[][+/0-9=a-z_~;])i",
'shortenLinksCallback',
htmlSpecialChars($text)
);

}

?>

<?php

echo shortenLinks("xxx https://net-raft.com/Questions/869/how-to-detect-the-type-of-a-device-pc-mobile-using-php-/869 xxx");

// shorten if link is greater than 62 signs

?>

</body>
</html>


By        
The power of the user (%)
80%



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.2K     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!