developer tools
this is a simple 1-page website which provides quick access to a few much-needed features for developers. this was created as a debugging and development tool for our own scripts and crons. the idea is to get some basic pieces of information accessible from one location.
table of contents
quick info [top]
your
IP address :
quick php test:
your
User-Agent is: (your browser's identification string)
your
session ID for this website is: (stored in your browser's cookies)
current
server time :
(that last one is the unix timestamp)
quick info url's [top]
a great way to get some quick information about your server
can use via your browser, in nightly debugging scripts, or on the command line
if you abuse these links to the point that it affects our server, bandwidth, or anything else, we will ban your ip
description
example
url
preview
IP address only: 123.45.678.91 open
Browser's User-Agent Only: Mozilla/5.0...... open
hello:for testing if a script can get to the outside world (ie. php.ini:allow_url_fopen) hello open
Date & Time:
2012-05-18 13:12:04 -07:00 open
php: date("Y-m-d H:i:s P")
Date & Time (system - short):
2012 05 18 13 12 04 PDT open
php: date("Y m d H i s T"), quick extraction:
list($year, $month, $day, $hour, $minute, $second, $timezoneAbbr) = explode(" ", $str); $timezone = 'PST';
Date & Time (system - long):
2012 05 18 13 12 04 Friday 5 138 PDT -07:00 1 open
php: date("Y m d H i s l w z T P I"), quick extraction:
list($year, $month, $day, $hour, $minute, $second, $weekdayName, $dayOfWeek, $dayOfYear, $timezoneAbbr, $timzeoneOffset, $isDST) = explode(" ", $str); $timezone = 'PST';
Unix Timestamp: php: time() 1337371924 open
All (field names): open
All (no field names): - easy to process using explode() open
quick copy & paste code snippets [top]
quick urls for other sites and tools [top]