Horje

How to show Domain Extension from PHP String

Try following codes.
index.html
Example: HTML
<?php
$host = parse_url('http://www.google.co.uk/test.html');
preg_match('/(.*?)((\.co)?.[a-z]{2,4})$/i', $host['host'], $m);

$ext = isset($m[2]) ? $m[2]: '';
echo $ext; ?>




Type:
html
Category:
Web Tutorial
Sub Category:
PHP Domain Tutorial
Uploaded by:
Admin