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, ∼3476🔥, 0💬
Popular Posts:
How to unzip a Word Document .docx file? According to Microsoft documentation, a .docx file is reall...
How to add slide numbers and copyright in the footer area? You can add slide numbers, copyright text...
How to convert slide files created with older versions of PowerPoint to the current PowerPoint? I ha...
How to open firewall for the FTP command-line tool on Windows for data connections in active mode? I...
How to make my presentation beautiful by applying a built-in theme provided by Office PowerPoint 200...