Login   Register  
PHP Classes
elePHPant
Icontem

File: FindURL.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2010-08-01 23:48
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;
?>