array Net_NNTP::getDate (
)
ニュースサーバから日付を取得します。
array - 日付を格納した連想配列。
$date['y'] 年
$date['m'] 月
$date['d'] 日
0.3 以降
This function can not be called statically.
getDate() の使用
<?php
...
$date = $nntp->getDate();
echo "Date: ".$date['m']."-".$date['d']."-".$date['y'];
?>