Net_NNTP::getOverviewFmt() -- fetch the name of message headers
Beschrijving
Returns the name of message headers, which is provided by every message
Return waarde
array - list of header names
Note
Deze functie kan niet statisch worden aangeroepen.
Voorbeeld
Voorbeeld 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>'; |
|