You are here

function PEAR::_PEAR in Flickr API 5

Destructor (the emulated type of...). Does nothing right now, but is included for forward compatibility, so subclass destructors should always call it.

See the note in the class desciption about output from destructors.

@access public

Return value

void

File

phpFlickr/PEAR/PEAR.php, line 208

Class

PEAR
Base class for other PEAR classes. Provides rudimentary emulation of destructors.

Code

function _PEAR() {
  if ($this->_debug) {
    printf("PEAR destructor called, class=%s\n", strtolower(get_class($this)));
  }
}