PHP Classes

File: FindURL.php

Recommend this page to a friend!
  Classes of murali   Find Redirect URL   FindURL.php   Download  
File: FindURL.php
Role: Example script
Content type: text/plain
Description: Find redirect URL using cURL function
Class: Find Redirect URL
Determine the URL to that a page redirects
Author: By
Last change:
Date: 13 years ago
Size: 176 bytes
 

Contents

Class file image Download
<?php
require 'class.php';

$cls = new RedirectURL();

$url='www.tcs.com';

$RedirectURL=$cls->Track_HTTP_redirect($url);
echo
'<h2>FINAL URL :</h2> '.$RedirectURL;
?>