Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18013 программистов и 1643 робота. Сейчас ищут 986 программистов ...
Net_NNTP::getDate()
Вернуться к: Net_NNTP
Net_NNTP::getDate()
Net_NNTP::getDate() – get date from news server
Synopsis
require_once 'Net/NNTP.php';
array Net_NNTP::getDate ( )
Retrieves the date from the news server
Return value
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'];
?>
Вернуться к: Net_NNTP