Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17983 программиста и 1636 роботов. Сейчас ищут 2098 программистов ...
Net_NNTP_Client::getDate()
Вернуться к: Net_NNTP_Client
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 )
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'];
?>
Вернуться к: Net_NNTP_Client