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, 3287🔥, 0💬
Popular Posts:
How to add ActiveX controls, like text command button, text box, check box, etc., to Presentation sl...
How to save word documents into Unicode UTF-8 text files? When I convert Word documents into text fi...
Where to find answers to frequently asked questions on installing and using Mozilla Firefox 2.0? Her...
Where does Mozilla Firefox 2 store download files? When you download files from Websites, Mozilla Fi...
How to create a new PowerPoint presentation from a PowerPoint template? I have a PowerPoint template...