Function FirePHP->_isClassPropertyInObjectFilter

Definitions

sources/firephp.php

  • Check if the property of an object of a specific classshould be ignored by looking up the class and allparent classes in the object filter.
  • Visibility: protected
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$class string No No required parameter N/A N/A The class to check
$name string No No required parameter N/A N/A The property name to check

Returns

  • Type: boolean
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Check if the property of an object of a specific classshould be ignored by looking up the class and allparent classes in the object filter.
 *
 * @param  string $class The class to check
 * @param  string $name The property name to check
 * @return boolean
 */

protected function _isClassPropertyInObjectFilter($class, $name)