Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17940 программистов и 1637 роботов. Сейчас ищут 1730 программистов ...
Net_NNTP::date()
Вернуться к: Net_NNTP
Net_NNTP::date()
Net_NNTP::date() – get date from news server
Synopsis
require_once 'Net/NNTP.php';
array Net_NNTP::date ( )
This function is deprecated. That means that future versions of this package may not support it anymore.
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
This function can not be called statically.
Example
Using date()
<?php
...
$date = $nntp->date();
echo "Date: ".$date['m']."-".$date['d']."-".$date['y'];
?>
Вернуться к: Net_NNTP