You are here

function DB_storage::dump in Flickr API 5

Dump the contents of this object to "standard output".

File

phpFlickr/PEAR/DB/storage.php, line 274

Class

DB_storage
Provides an object interface to a table row

Code

function dump() {
  foreach ($this->_properties as $prop => $foo) {
    print "{$prop} = ";
    print htmlentities($this->{$prop});
    print "<br />\n";
  }
}