Skip to content

Instantly share code, notes, and snippets.

@kashwaa
Created August 26, 2014 15:02
Show Gist options
  • Save kashwaa/66e648bff98add3daa9e to your computer and use it in GitHub Desktop.
Save kashwaa/66e648bff98add3daa9e to your computer and use it in GitHub Desktop.
<?php
class IP
{
public $value;
public $lastupdate;
function IP()
{
$this->value=$_SERVER['REMOTE_ADDR'];;
$this->lastupdate=new DateTime();
}
}
$ip=new IP();
file_put_contents("ip.json", json_encode($ip));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment