PHP Doku:: Returns the name of the nth column - sqlite3result.columnname.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenSQLite3Die SQLite3Result KlasseSQLite3Result::columnName

Ein Service von Reinhard Neidl - Webprogrammierung.

Die SQLite3Result Klasse

<<Die SQLite3Result Klasse

SQLite3Result::columnType>>

SQLite3Result::columnName

(PHP 5 >= 5.3.0)

SQLite3Result::columnNameReturns the name of the nth column

Beschreibung

public string SQLite3Result::columnName ( int $column_number )

Returns the name of the column specified by the column_number.

Parameter-Liste

column_number

The numeric zero-based index of the column.

Rückgabewerte

Returns the string name of the column identified by column_number.


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
david dot barkman13 at gmail dot com
16.04.2010 23:23
Example:

<?php
   
public function selectAll($table)
    {
       
$results = $this->_dbConn->query("SELECT * FROM $table");
       
$cols = $results->numColumns();
        while (
$row = $results->fetchArray()) {
            for (
$i = 1; $i < $cols; $i++) {
                echo
$results->columnName($i) . ': ';
                echo
$row[$i] . '<br />';
            }
           
//print_r($row);
            //echo 'Username: ' . $row['USERNAME'] . '<br />';
       
}
       
$this->_dbConn->close();
    }
?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)