ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
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 3826 of file MDB2.php.

Constructor & Destructor Documentation

◆ __construct()

MDB2_Row::__construct ( $row)

constructor

Parameters
resourcerow data as array

Definition at line 3835 of file MDB2.php.

3836 {
3837 foreach ($row as $key => $value) {
3838 $this->$key = &$row[$key];
3839 }
3840 }

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 3850 of file MDB2.php.

3851 {
3852 $this->__construct($row);
3853 }
__construct(&$row)
constructor
Definition: MDB2.php:3835

References $row, and __construct().

+ Here is the call graph for this function:

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