irwan

Parse URL and extract the domain name

Nov 15th, 2011
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 14.34 KB | None | 0 0
  1. <?php
  2. $url_parts = parse_url("http://mail.xxxxxxx.net");
  3. $domain = $url_parts['host'];
  4. $res = mysql_query("SELECT tld FROM domain_info ORDER BY LENGTH(tld) DESC");
  5. // "ORDER BY LENGTH(tld)" will give first the co.uk and then the uk
  6. while ($arr = mysql_fetch_assoc($res)) {
  7.     $tmp_tld = substr($domain, -strlen(".".$arr['tld']));
  8.     if ($tmp_tld == ".".$arr['tld']) { // You found the tld
  9.         $tld = ltrim($arr['tld'], ".");
  10.         $domainLeft = substr($domain, 0, -(strlen($tld) + 1)); // It will left the whatever, without the extension and the .
  11.         if (strpos($domainLeft, ".") === false) { // It hasn't a subdomain
  12.             $subDomain = "";
  13.             $finalDomain = $domainLeft;
  14.         } else {
  15.             $domain_parts = explode(".", $domainLeft);
  16.             $finalDomain = array_pop($domain_parts); // select the domain and remove it from the array
  17.             $subDomain = implode(".", $domain_parts); // a subdomain can more then one parts seperated with dot's
  18.         }
  19.         echo "The tld is: ".$tld."<br>";
  20.         echo "the domain name is :".$finalDomain."<br />";
  21.         echo "the subdomain is: ";
  22.         echo (!empty($subDomain)) ? $subDomain : "n/a";
  23.         echo "<br>";
  24.         break;
  25.     }
  26. }
  27. ?>
  28.  
  29. DATABASE
  30.  
  31. CREATE TABLE `domain_info` (
  32.   `tld` varchar(20) collate latin1_general_ci NOT NULL default '',
  33.   `whois_server` varchar(100) collate latin1_general_ci NOT NULL default '',
  34.   `is_free` varchar(100) collate latin1_general_ci NOT NULL default '',
  35.   UNIQUE KEY `tld` (`tld`)
  36. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  37.  
  38. --
  39. -- Dumping data for table `domain_info`
  40. --
  41.  
  42. INSERT INTO `domain_info` (`tld`, `whois_server`, `is_free`) VALUES
  43. ('ac', 'whois.nic.ac', 'No match'),
  44. ('ac.cn', 'whois.cnnic.net.cn', 'no matching record'),
  45. ('ac.jp', 'whois.nic.ad.jp', 'No match'),
  46. ('ac.uk', 'whois.ja.net', 'No such domain'),
  47. ('ad.jp', 'whois.nic.ad.jp', 'No match'),
  48. ('adm.br', 'whois.nic.br', 'No match'),
  49. ('adv.br', 'whois.nic.br', 'No match'),
  50. ('aero', 'whois.information.aero', 'is available'),
  51. ('ag', 'whois.nic.ag', 'Not found'),
  52. ('agr.br', 'whois.nic.br', 'No match'),
  53. ('ah.cn', 'whois.cnnic.net.cn', 'No entries found'),
  54. ('al', 'whois.ripe.net', 'No entries found'),
  55. ('am', 'whois.amnic.net', 'No match'),
  56. ('am.br', 'whois.nic.br', 'No match'),
  57. ('arq.br', 'whois.nic.br', 'No match'),
  58. ('art.br', 'whois.nic.br', 'No match'),
  59. ('as', 'whois.nic.as', 'Domain Not Found'),
  60. ('asn.au', 'whois.aunic.net', 'No Data Found'),
  61. ('at', 'whois.nic.at', 'nothing found'),
  62. ('ato.br', 'whois.nic.br', 'No match'),
  63. ('au', 'whois.aunic.net', 'No Data Found'),
  64. ('av.tr', 'whois.nic.tr', 'Not found in database'),
  65. ('az', 'whois.ripe.net', 'no entries found'),
  66. ('ba', 'whois.ripe.net', 'No match for'),
  67. ('be', 'whois.geektools.com', 'No such domain'),
  68. ('bel.tr', 'whois.nic.tr', 'Not found in database'),
  69. ('bg', 'whois.digsys.bg', 'does not exist'),
  70. ('bio.br', 'whois.nic.br', 'No match'),
  71. ('biz', 'whois.biz', 'Not found'),
  72. ('biz.tr', 'whois.nic.tr', 'Not found in database'),
  73. ('bj.cn', 'whois.cnnic.net.cn', 'No entries found'),
  74. ('bmd.br', 'whois.nic.br', 'No match'),
  75. ('br', 'whois.registro.br', 'No match'),
  76. ('by', 'whois.ripe.net', 'no entries found'),
  77. ('ca', 'whois.cira.ca', 'Status: AVAIL'),
  78. ('cc', 'whois.nic.cc', 'No match'),
  79. ('cd', 'whois.cd', 'No match'),
  80. ('ch', 'whois.nic.ch', 'We do not have an entry'),
  81. ('cim.br', 'whois.nic.br', 'No match'),
  82. ('ck', 'whois.ck-nic.org.ck', 'No entries found'),
  83. ('cl', 'whois.nic.cl', 'no existe'),
  84. ('cn', 'whois.cnnic.net.cn', 'No entries found'),
  85. ('cng.br', 'whois.nic.br', 'No match'),
  86. ('cnt.br', 'whois.nic.br', 'No match'),
  87. ('co.at', 'whois.nic.at', 'nothing found'),
  88. ('co.jp', 'whois.nic.ad.jp', 'No match'),
  89. ('co.uk', 'whois.nic.uk', 'No match for'),
  90. ('com', 'whois.crsnic.net', 'No match'),
  91. ('com.au', 'whois.aunic.net', 'No Data Found'),
  92. ('com.br', 'whois.nic.br', 'No match'),
  93. ('com.cn', 'whois.cnnic.net.cn', 'No entries found'),
  94. ('com.eg', 'whois.ripe.net', 'No entries found'),
  95. ('com.hk', 'whois.hknic.net.hk', 'No Match for'),
  96. ('com.mx', 'whois.nic.mx', 'Nombre del Dominio'),
  97. ('com.ru', 'whois.ripn.ru', 'No entries found'),
  98. ('com.tr', 'whois.nic.tr', 'Not found in database'),
  99. ('com.tw', 'whois.twnic.net', 'NO MATCH TIP'),
  100. ('conf.au', 'whois.aunic.net', 'No entries found'),
  101. ('cq.cn', 'whois.cnnic.net.cn', 'No entries found'),
  102. ('csiro.au', 'whois.aunic.net', 'No Data Found'),
  103. ('cx', 'whois.nic.cx', 'No match'),
  104. ('cy', 'whois.ripe.net', 'no entries found'),
  105. ('cz', 'whois.nic.cz', 'No data found'),
  106. ('de', 'whois.denic.de', 'not found'),
  107. ('dk', 'whois.dk-hostmaster.dk', 'No entries found'),
  108. ('dr.tr', 'whois.nic.tr', 'Not found in database'),
  109. ('dz', 'whois.ripe.net', 'no entries found'),
  110. ('ecn.br', 'whois.nic.br', 'No match'),
  111. ('edu', 'whois.crsnic.net', 'No match'),
  112. ('edu.au', 'whois.aunic.net', 'No Data Found'),
  113. ('edu.br', 'whois.nic.br', 'No match'),
  114. ('edu.tr', 'whois.nic.tr', 'Not found in database'),
  115. ('ee', 'whois.eenet.ee', 'NOT FOUND'),
  116. ('eg', 'whois.ripe.net', 'No entries found'),
  117. ('emu.id.au', 'whois.aunic.net', 'No Data Found'),
  118. ('eng.br', 'whois.nic.br', 'No match'),
  119. ('es', 'whois.ripe.net', 'No entries found'),
  120. ('esp.br', 'whois.nic.br', 'No match'),
  121. ('etc.br', 'whois.nic.br', 'No match'),
  122. ('eti.br', 'whois.nic.br', 'No match'),
  123. ('eu', 'whois.eu', 'Status:      FREE'),
  124. ('eun.eg', 'whois.ripe.net', 'No entries found'),
  125. ('far.br', 'whois.nic.br', 'No match'),
  126. ('fi', 'whois.ripe.net', 'No entries found'),
  127. ('fj', 'whois.usp.ac.fj', ''),
  128. ('fj.cn', 'whois.cnnic.net.cn', 'No entries found'),
  129. ('fm.br', 'whois.nic.br', 'No match'),
  130. ('fnd.br', 'whois.nic.br', 'No match'),
  131. ('fo', 'whois.ripe.net', 'no entries found'),
  132. ('fot.br', 'whois.nic.br', 'No match'),
  133. ('fr', 'whois.nic.fr', 'No entries found'),
  134. ('fst.br', 'whois.nic.br', 'No match'),
  135. ('g12.br', 'whois.nic.br', 'No match'),
  136. ('gb', 'whois.ripe.net', 'No match for'),
  137. ('gb.com', 'whois.nomination.net', 'No match for'),
  138. ('gb.net', 'whois.nomination.net', 'No match for'),
  139. ('gd.cn', 'whois.cnnic.net.cn', 'No entries found'),
  140. ('ge', 'whois.ripe.net', 'no entries found'),
  141. ('gen.tr', 'whois.nic.tr', 'Not found in database'),
  142. ('ggf.br', 'whois.nic.br', 'No match'),
  143. ('gl', 'whois.ripe.net', 'no entries found'),
  144. ('gob.mx', 'whois.nic.mx', 'Nombre del Dominio'),
  145. ('gov.au', 'whois.aunic.net', 'No Data Found'),
  146. ('gov.br', 'whois.nic.br', 'No match'),
  147. ('gov.cn', 'whois.cnnic.net.cn', 'No entries found'),
  148. ('gov.hk', 'whois.hknic.net.hk', 'No Match for'),
  149. ('gov.tr', 'whois.nic.tr', 'Not found in database'),
  150. ('gr', 'whois.ripe.net', 'no entries found'),
  151. ('gr.jp', 'whois.nic.ad.jp', 'No match'),
  152. ('gs', 'whois.adamsnames.tc', 'is not registered'),
  153. ('gs.cn', 'whois.cnnic.net.cn', 'No entries found'),
  154. ('gx.cn', 'whois.cnnic.net.cn', 'No entries found'),
  155. ('gz.cn', 'whois.cnnic.net.cn', 'No entries found'),
  156. ('ha.cn', 'whois.cnnic.net.cn', 'No entries found'),
  157. ('hb.cn', 'whois.cnnic.net.cn', 'No entries found'),
  158. ('he.cn', 'whois.cnnic.net.cn', 'No entries found'),
  159. ('hi.cn', 'whois.cnnic.net.cn', 'No entries found'),
  160. ('hk', 'whois.hknic.net.hk', 'No Match for'),
  161. ('hk.cn', 'whois.cnnic.net.cn', 'No entries found'),
  162. ('hl.cn', 'whois.cnnic.net.cn', 'No entries found'),
  163. ('hm', 'whois.registry.hm', '(null)'),
  164. ('hn.cn', 'whois.cnnic.net.cn', 'No entries found'),
  165. ('hu', 'whois.ripe.net', 'MAXCHARS:500'),
  166. ('id.au', 'whois.aunic.net', 'No Data Found'),
  167. ('idv.tw', 'whois.twnic.net', 'NO MATCH TIP'),
  168. ('ie', 'whois.domainregistry.ie', 'no match'),
  169. ('il', 'whois.isoc.org.il', 'No data was found'),
  170. ('imb.br', 'whois.nic.br', 'No match'),
  171. ('ind.br', 'whois.nic.br', 'No match'),
  172. ('inf.br', 'whois.nic.br', 'No match'),
  173. ('info', 'whois.afilias.info', 'Not found'),
  174. ('info.au', 'whois.aunic.net', 'No Data Found'),
  175. ('info.tr', 'whois.nic.tr', 'Not found in database'),
  176. ('int', 'whois.iana.org', 'not found'),
  177. ('is', 'whois.isnic.is', 'No entries found'),
  178. ('it', 'whois.nic.it', 'No entries found'),
  179. ('jl.cn', 'whois.cnnic.net.cn', 'No entries found'),
  180. ('jor.br', 'whois.nic.br', 'No match'),
  181. ('jp', 'whois.nic.ad.jp', 'No match'),
  182. ('js.cn', 'whois.cnnic.net.cn', 'No entries found'),
  183. ('jx.cn', 'whois.cnnic.net.cn', 'No entries found'),
  184. ('k12.tr', 'whois.nic.tr', 'Not found in database'),
  185. ('ke', 'whois.rg.net', 'No match for'),
  186. ('kr', 'whois.krnic.net', 'is not registered'),
  187. ('la', 'whois.nic.la', 'NO MATCH'),
  188. ('lel.br', 'whois.nic.br', 'No match'),
  189. ('li', 'whois.nic.ch', 'We do not have an entry'),
  190. ('lk', 'whois.nic.lk', 'No domain registered'),
  191. ('ln.cn', 'whois.cnnic.net.cn', 'No entries found'),
  192. ('lt', 'ns.litnet.lt', 'No matches found'),
  193. ('ltd.uk', 'whois.nic.uk', 'No match for'),
  194. ('lu', 'whois.dns.lu', 'No entries found'),
  195. ('lv', 'whois.ripe.net', 'no entries found'),
  196. ('ma', 'whois.ripe.net', 'No entries found'),
  197. ('mat.br', 'whois.nic.br', 'No match'),
  198. ('mc', 'whois.ripe.net', 'No entries found'),
  199. ('md', 'whois.ripe.net', 'No match for'),
  200. ('me.uk', 'whois.nic.uk', 'No match for'),
  201. ('med.br', 'whois.nic.br', 'No match'),
  202. ('mil', 'whois.nic.mil', 'No match'),
  203. ('mil.br', 'whois.nic.br', 'No match'),
  204. ('mil.tr', 'whois.nic.tr', 'Not found in database'),
  205. ('mk', 'whois.ripe.net', 'No match for'),
  206. ('mn', 'whois.nic.mn', 'Domain not found'),
  207. ('mo.cn', 'whois.cnnic.net.cn', 'No entries found'),
  208. ('ms', 'whois.adamsnames.tc', 'is not registered'),
  209. ('mt', 'whois.ripe.net', 'No Entries found'),
  210. ('mus.br', 'whois.nic.br', 'No match'),
  211. ('mx', 'whois.nic.mx', 'Nombre del Dominio'),
  212. ('name', 'whois.nic.name', 'No match'),
  213. ('name.tr', 'whois.nic.tr', 'Not found in database'),
  214. ('ne.jp', 'whois.nic.ad.jp', 'No match'),
  215. ('net', 'whois.crsnic.net', 'No match'),
  216. ('net.au', 'whois.aunic.net', 'No Data Found'),
  217. ('net.br', 'whois.nic.br', 'No match'),
  218. ('net.cn', 'whois.cnnic.net.cn', 'No entries found'),
  219. ('net.eg', 'whois.ripe.net', 'No entries found'),
  220. ('net.hk', 'whois.hknic.net.hk', 'No Match for'),
  221. ('net.lu', 'whois.dns.lu', 'No entries found'),
  222. ('net.mx', 'whois.nic.mx', 'Nombre del Dominio'),
  223. ('net.ru', 'whois.ripn.ru', 'No entries found'),
  224. ('net.tr', 'whois.nic.tr', 'Not found in database'),
  225. ('net.tw', 'whois.twnic.net', 'NO MATCH TIP'),
  226. ('net.uk', 'whois.nic.uk', 'No match for'),
  227. ('nl', 'whois.domain-registry.nl', 'is not a registered domain'),
  228. ('nm.cn', 'whois.cnnic.net.cn', 'No entries found'),
  229. ('no', 'whois.norid.no', 'no matches'),
  230. ('no.com', 'whois.nomination.net', 'No match for'),
  231. ('nom.br', 'whois.nic.br', 'No match'),
  232. ('not.br', 'whois.nic.br', 'No match'),
  233. ('ntr.br', 'whois.nic.br', 'No match'),
  234. ('nu', 'whois.nic.nu', 'NO MATCH for'),
  235. ('nx.cn', 'whois.cnnic.net.cn', 'No entries found'),
  236. ('nz', 'whois.domainz.net.nz', 'Not Listed'),
  237. ('odo.br', 'whois.nic.br', 'No match'),
  238. ('oop.br', 'whois.nic.br', 'No match'),
  239. ('or.at', 'whois.nic.at', 'nothing found'),
  240. ('or.jp', 'whois.nic.ad.jp', 'No match'),
  241. ('org', 'whois.pir.org', 'NOT FOUND'),
  242. ('org.au', 'whois.aunic.net', 'No Data Found'),
  243. ('org.br', 'whois.nic.br', 'No match'),
  244. ('org.cn', 'whois.cnnic.net.cn', 'No entries found'),
  245. ('org.hk', 'whois.hknic.net.hk', 'No Match for'),
  246. ('org.lu', 'whois.dns.lu', 'No entries found'),
  247. ('org.ru', 'whois.ripn.ru', 'No entries found'),
  248. ('org.tr', 'whois.nic.tr', 'Not found in database'),
  249. ('org.tw', 'whois.twnic.net', 'NO MATCH TIP'),
  250. ('org.uk', 'whois.nic.uk', 'No match for'),
  251. ('pk', 'whois.pknic.net', 'is not registered'),
  252. ('pl', 'whois.ripe.net', 'No information about'),
  253. ('plc.uk', 'whois.nic.uk', 'No match for'),
  254. ('pol.tr', 'whois.nic.tr', 'Not found in database'),
  255. ('pp.ru', 'whois.ripn.ru', 'No entries found'),
  256. ('ppg.br', 'whois.nic.br', 'No match'),
  257. ('pro.br', 'whois.nic.br', 'No match'),
  258. ('psc.br', 'whois.nic.br', 'No match'),
  259. ('psi.br', 'whois.nic.br', 'No match'),
  260. ('pt', 'whois.ripe.net', 'No match for'),
  261. ('qh.cn', 'whois.cnnic.net.cn', 'No entries found'),
  262. ('qsl.br', 'whois.nic.br', 'No match'),
  263. ('rec.br', 'whois.nic.br', 'No match'),
  264. ('ro', 'whois.ripe.net', 'No entries found'),
  265. ('ru', 'whois.ripn.ru', 'No entries found'),
  266. ('sc.cn', 'whois.cnnic.net.cn', 'No entries found'),
  267. ('sd.cn', 'whois.cnnic.net.cn', 'No entries found'),
  268. ('se', 'whois.nic-se.se', 'No data found'),
  269. ('se.com', 'whois.nomination.net', 'No match for'),
  270. ('se.net', 'whois.nomination.net', 'No match for'),
  271. ('sg', 'whois.nic.net.sg', 'NO entry found'),
  272. ('sh', 'whois.nic.sh', 'No match for'),
  273. ('sh.cn', 'whois.cnnic.net.cn', 'No entries found'),
  274. ('si', 'whois.arnes.si', 'No entries found'),
  275. ('sk', 'whois.ripe.net', 'no entries found'),
  276. ('slg.br', 'whois.nic.br', 'No match'),
  277. ('sm', 'whois.ripe.net', 'no entries found'),
  278. ('sn.cn', 'whois.cnnic.net.cn', 'No entries found'),
  279. ('srv.br', 'whois.nic.br', 'No match'),
  280. ('st', 'whois.nic.st', 'No entries found'),
  281. ('su', 'whois.ripe.net', 'No entries found'),
  282. ('sx.cn', 'whois.cnnic.net.cn', 'No entries found'),
  283. ('tc', 'whois.adamsnames.tc', 'is not registered'),
  284. ('tel.tr', 'whois.nic.tr', 'Not found in database'),
  285. ('th', 'whois.nic.uk', 'No entries found'),
  286. ('tj.cn', 'whois.cnnic.net.cn', 'No entries found'),
  287. ('tm', 'whois.nic.tm', 'No match for'),
  288. ('tmp.br', 'whois.nic.br', 'No match'),
  289. ('tn', 'whois.ripe.net', 'No entries found'),
  290. ('to', 'whois.tonic.to', 'No match'),
  291. ('trd.br', 'whois.nic.br', 'No match'),
  292. ('tur.br', 'whois.nic.br', 'No match'),
  293. ('tv', 'whois.nic.tv', 'MAXCHARS:75'),
  294. ('tv.br', 'whois.nic.br', 'No match'),
  295. ('tw', 'whois.twnic.net', 'NO MATCH TIP'),
  296. ('tw.cn', 'whois.cnnic.net.cn', 'No entries found'),
  297. ('ua', 'whois.ripe.net', 'No entries found'),
  298. ('uk', 'whois.thnic.net', 'No match for'),
  299. ('uk.com', 'whois.nomination.net', 'No match for'),
  300. ('uk.net', 'whois.nomination.net', 'No match for'),
  301. ('us', 'whois.nic.us', 'Not found'),
  302. ('va', 'whois.ripe.net', 'No entries found'),
  303. ('vet.br', 'whois.nic.br', 'No match'),
  304. ('vg', 'whois.adamsnames.tc', 'is not registered'),
  305. ('wattle.id.au', 'whois.aunic.net', 'No Data Found'),
  306. ('web.tr', 'whois.nic.tr', 'Not found in database'),
  307. ('ws', 'whois.worldsite.ws', 'No match for'),
  308. ('xj.cn', 'whois.cnnic.net.cn', 'No entries found'),
  309. ('xz.cn', 'whois.cnnic.net.cn', 'No entries found'),
  310. ('yn.cn', 'whois.cnnic.net.cn', 'No entries found'),
  311. ('yu', 'whois.ripe.net', 'No entries found'),
  312. ('za', 'whois.frd.ac.za', 'No match for'),
  313. ('zj.cn', 'whois.cnnic.net.cn', 'No entries found'),
  314. ('zlg.br', 'whois.nic.br', 'No match'),
  315. ('co.nr', '', ''),
  316. ('co.nz', '', ''),
  317. ('tk', '', ''),
  318. ('in', '', ''),
  319. ('gov', '', ''),
  320. ('hr', '', ''),
  321. ('fm', 'n/a', 'n/a'),
  322. ('com.gr', '', ''),
  323. ('net.gr', '', ''),
  324. ('org.gr', '', ''),
  325. ('edu.gr', '', '');
  326.  
  327.  
Advertisement
Add Comment
Please, Sign In to add comment