ADOdb

Database Abstraction Layer for PHP

User Tools

Site Tools


Action unknown: siteexport_addpage
v5:reference:recordset:fields

fields

  mixed fields(
        optional int $offset=1
        )

Description

The function fields() returns the value of the column at the specified offset. The offset is always an integer number, beginning at 1. If the offset is negative, or greater than the number of columns obtained through fieldCount(), the value returned is identical to false ===. If no offset is provided, the value of the first column is returned.

Usage

/*
 * DB Connection assumed
 */
$result = $db->execute("SELECT * FROM ACT");
$r = $result->fetchRow();
print $r->fields(1);
/*
 * Returns: 10
 */
v5/reference/recordset/fields.txt · Last modified: 2018/06/11 10:16 by dregad