Function To Remove Domain Name Extenstion At The End
Posted On Sun Apr 05, 2009 By wallpaperama In PHP Forums And Topics Discussions About Hyper Text Programming Language Forums
oh, i have this neat php function you can use to remove the extention from a tld domain name.
for example, lets say i have a hostname as : wallpaperama.com
but i only want the wallaperama part and not the dot com part so this function will remove the extesion from the domain name:
hope this helps
for example, lets say i have a hostname as : wallpaperama.com
but i only want the wallaperama part and not the dot com part so this function will remove the extesion from the domain name:
hope this helps
function remove_ext($filename) {
$extension = strrchr($filename, '.');
if($extension !== false){
$filename = substr($filename, 0, -strlen($extension));
}
return $filename;
}Related Content
Information
Forums »
PHP Forums And Topics Discussions About Hyper Text Programming Language »
Function To Remove Domain Name Extenstion At The End
PHP Forums And Topics Discussions About Hyper Text Programming Language »
Function To Remove Domain Name Extenstion At The End
Title: Function To Remove Domain Name Extenstion At The End
Description: Function To Remove Domain Name Extenstion At The End
Tags: function ,to ,remove ,domain ,name ,extenstion ,at ,the ,end
Info: This Post Has Been Viewed 0 Times Since
Date: Sun Apr 05, 2009
Author wallpaperama Received 0 Replies #1263
Date: Sun Apr 05, 2009
Author wallpaperama Received 0 Replies #1263
Share
URL: 

Embed: 

To embed this topic, just copy the code from the "Embed" box. Once you've copied the code, just paste it into your website or blog to embed it
BBCODE:: 

BBCODE is use on forums. You can put this code on all your BBCODE enabled forums like PhpBB, vBulletin® and others. Just Copy and Paste this code on your Posts and Replies on your forums
wallpaperama | Wallpapers | Forums | Terms Of Service
copyright © 2013 wallpaperama - All Rights Reserved - Last Updated Mon May 06, 2013 (-8 GMT)
Powered by: Webune Forums V5
copyright © 2013 wallpaperama - All Rights Reserved - Last Updated Mon May 06, 2013 (-8 GMT)
Powered by: Webune Forums V5