function DB_row::DB_row in Flickr API 5
The constructor places a row's data into properties of this object
Parameters
array the array containing the row's data:
Return value
void
File
- phpFlickr/
PEAR/ DB.php, line 1368
Class
- DB_row
- PEAR DB Row Object
Code
function DB_row(&$arr) {
foreach ($arr as $key => $value) {
$this->{$key} =& $arr[$key];
}
}