Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17945 программистов и 1637 роботов. Сейчас ищут 1709 программистов ...
Net_NNTP::getOverviewFormat()
Вернуться к: Net_NNTP
Net_NNTP::getOverviewFormat()
Net_NNTP::getOverviewFormat() – fetch the name of message headers
Synopsis
require_once 'Net/NNTP.php';
array Net_NNTP::getOverviewFormat ( )
Returns the name of message headers, which is provided by every message
Return value
array - list of header names
Note
This function can not be called statically.
Example
Using getOverviewFmt()
<?php
...
$tblheaders = $nntp->getOverviewFormat();
// create a table headline
echo '<table>';
echo '<tr>';
foreach($tblheaders as $th) {
// print headernames
echo '<th>'.$th.'</th>';
}
echo '</tr>';
... // draw the header data of messages
echo '</table>';
?>
Вернуться к: Net_NNTP