25 pers. connectées au site
Manuel Pear
Net_NNTP::getOverviewFormat()
Net_NNTP::getOverviewFormat() -- fetch the name of message headers
Synopsis
- <?php
- require_once 'Net/NNTP.php
- ?>
array Net_NNTP::getOverviewFormat ()
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 54-1. Using getOverviewFmt()
- <?php
- ...
- $tblheaders = $nntp->getOverviewFormat();
- echo '<table>';
- echo '<tr>';
- foreach($tblheaders as $th) {
- echo '<th>'.$th.'</th>';
- }
- echo '</tr>';
- ...
- echo '</table>
- ?>
|
Remonter