previousNet_NNTP_Client::getBodyRaw() (Previous) (Next) Net_NNTP_Client::getGroups()next

View this page in Last updated: Tue, 02 Jun 2009
English | Brazilian Portuguese | Chinese | Dutch | French | German | Hungarian | Japanese | Polish | Russian | Spanish | Turkish

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
  • $date['y'] Year

  • $date['m'] Month

  • $date['d'] Day

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'];
?>
previousNet_NNTP_Client::getBodyRaw() (Previous) (Next) Net_NNTP_Client::getGroups()next

Download Documentation Last updated: Tue, 02 Jun 2009
Do you think that something on this page is wrong? Please file a bug report or add a note.
User Notes:
There are no user contributed notes for this page.