ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
MDB2_Row Class Reference
+ Collaboration diagram for MDB2_Row:

Public Member Functions

 __construct (&$row)
 constructor More...
 
 MDB2_Row (&$row)
 PHP 4 Constructor. More...
 

Detailed Description

Definition at line 3858 of file MDB2.php.

Constructor & Destructor Documentation

◆ __construct()

MDB2_Row::__construct ( $row)

constructor

Parameters
resourcerow data as array

Definition at line 3867 of file MDB2.php.

3868 {
3869 foreach ($row as $key => $value) {
3870 $this->$key = &$row[$key];
3871 }
3872 }

References $row.

Referenced by MDB2_Row().

+ Here is the caller graph for this function:

Member Function Documentation

◆ MDB2_Row()

MDB2_Row::MDB2_Row ( $row)

PHP 4 Constructor.

Parameters
resourcerow data as array

Definition at line 3882 of file MDB2.php.

3883 {
3884 $this->__construct($row);
3885 }
__construct(&$row)
constructor
Definition: MDB2.php:3867

References $row, and __construct().

+ Here is the call graph for this function:

The documentation for this class was generated from the following file: