Net_NNTP::getOverviewFmt() -- fetch the name of message headers
Description
Returns the name of message headers, which is provided by every message
Valeur retournée
array - list of header names
Note
Cette fonction ne peut pas être appelée de façon statique.
Exemple
Exemple 49-1. Using getOverviewFmt() ...
$tblheaders = $nntp->getOverviewFmt();
// 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>'; |
|