Get tld from domain


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <?php
  2. $tld = strrchr ( $_SERVER['SERVER_NAME'], "." );
  3. $tld = substr ( $tld, 1 );
  4. echo $tld;
  5. ?>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.