previousNet_NNTP::getOverviewFmt() (Previous) (Next) Net_NNTP::isConnected()next

View this page in Last updated: Sun, 18 Oct 2009
English | Brazilian Portuguese | Chinese | Dutch | French | German | Hungarian | Japanese | Polish | Russian | Spanish | Turkish

Net_NNTP::getOverviewFormat()

Net_NNTP::getOverviewFormat() – fetch the name of message headers

Synopsis

require_once 'Net/NNTP.php';

array Net_NNTP::getOverviewFormat ( )

Description

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>';
?>
previousNet_NNTP::getOverviewFmt() (Previous) (Next) Net_NNTP::isConnected()next

Download Documentation Last updated: Sun, 18 Oct 2009
Do you think that something on this page is wrong? Please file a bug report or add a note.
User Notes:
There are no user contributed notes for this page.