require_once 'Net/NNTP.php';
array Net_NNTP::date ()
array Net_NNTP::date
Retrieves the date from the news server
array - a hash with the date
$date['y'] Year
$date['m'] Month
$date['d'] Day
This function can not be called statically
Example 31-1. Using date()
... $date = $nntp->date(); echo "Date: ".$date['m']."-".$date['d']."-".$date['y'];