Net_NNTP_Client::getDate()
Net_NNTP_Client::getDate() – Get date from NNTP-server
Synopsis
require_once 'Net/NNTP/Client.php';
mixed Net_NNTP_Client::getDate (
integer $format = 1
)
Description
Retrieves the date from the NNTP-server.
Parameter
-
$format
- Tetermines which format to return.
Return value
$format | returns |
---|---|
0 |
timestamp
|
1 |
array - a hash with the date
|
Note
since 0.3
This function can not be called statically.
Example
Using getDate()
<?php
...
$date = $nntp->getDate();
echo "Date: ".$date['m']."-".$date['d']."-".$date['y'];
?>