Net_NNTP::getOverviewFormat() -- fetch the name of message headers
Описание
Returns the name of message headers, which is provided by every message
Возвращаемое значение
array - list of header names
Заметка
Эта функция не должна вызываться статически.
Пример
Пример 50-1. Using getOverviewFmt()
...
$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>'; |
|