PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Oliver Leuyim Angel   PHP Unique ID   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example for use this class
Class: PHP Unique ID
Generate a unique identifier of the current access
Author: By
Last change:
Date: 11 years ago
Size: 195 bytes
 

Contents

Class file image Download
<?php

require('class.uniqid.php');

$ret = new Uniq_Sec_ID();
$uniq_ID = $ret->UniID();
echo
"unique code: ".$uniq_ID;

//if you want to get the real ip

echo $ret->getRealIP();

?>