Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
How to short URL Function with PHP ?
Useful PHP Code Snippets for Developers - How to short URL Function with PHP
✍: Guest
45){
$length = $length - 30;
$first = substr($url, 0, -$length);
$last = substr($url, -15);
$new = $first."[ ... ]".$last;
return $new;
}else{
return $url;
}
}
?>
// USAGE
$shorturl";
?>
2015-06-19, 3175🔥, 0💬
Popular Posts:
How to see the key exchange process in an SFTP connection with FileZilla FTP Client? If you are conn...
How to configure Mozilla Firefox to use Notepad to edit Web page source code? By default, when you u...
What are the steps to insert Dynamic Fields in Microsoft Word? I want to insert the chapter heading ...
Why I am getting the "Warning: Unresponsive Script" message box? How to avoid this message box? When...
How to unzip a PowerPoint .pptx file? According to Microsoft documentation, a .pptx file is really a...