__isset() public method

Support isset() overloading on PHP 5.1
public __isset ( string $name ) : boolean
$name string
return boolean
Example #1
0
 /**
  * retorna true se existir uma elemento registrado com o indice informado
  *
  * @param string
  * @return bool
  * */
 public final function exists($name)
 {
     return (bool) $this->_resource->__isset($name);
 }