Điều này sẽ thực hiện thủ thuật, nó sẽ lấy dấu thời gian và chuyển nó sang định dạng con người có thể đọc được, bạn cũng có thể muốn tra cứu PHP date()
chức năng điều chỉnh $date_format
theo sở thích của bạn, có thể tìm thấy tại đây: http://php.net/manual/ en / function.date.php
$ip = $_SERVER['REMOTE_ADDR']; // Fetch IP
$query = mysql_query("SELECT `timestamp` FROM `votes` WHERE (`ip` = '$ip')") or die(mysql_error()); // Queries IP
$amount = mysql_num_rows($query); // Amount of times listed (rows)
if ($amount > 0) { // If exists
$row = mysql_fetch_array($query);
$timestamp = $row['timestamp'];
$date_format = 'm F \a\t g:ia';
$date = date("$date_format", $timestamp); // Converts timestamp
echo("Your IP Address (".$ip.") is already listed at ".$date."");
} else {
echo("Your IP Address is not currently listed");
}