Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

uopz_flags(3) [php man page]

UOPZ_FLAGS(3)								 1							     UOPZ_FLAGS(3)

uopz_flags - Get or set flags on function or class

SYNOPSIS
int uopz_flags (string $class, string $function, int $flags) DESCRIPTION
int uopz_flags (string $function, int $flags) Get or set the flags on a class or function entry at runtime PARAMETERS
o $class - The name of a class o $function - The name of the function o $flags - A valid set of ZEND_ACC_ flags, ZEND_ACC_FETCH to read flags RETURN VALUES
If setting, returns old flags, else returns flags EXAMPLES
Example #1 uopz_flags(3) example <?php class Test { public function method() { return __CLASS__; } } $flags = uopz_flags("Test", "method", ZEND_ACC_FETCH); var_dump((bool) (uopz_flags("Test", "method", ZEND_ACC_FETCH) & ZEND_ACC_PRIVATE)); var_dump((bool) (uopz_flags("Test", "method", ZEND_ACC_FETCH) & ZEND_ACC_STATIC)); var_dump(uopz_flags("Test", "method", $flags|ZEND_ACC_STATIC|ZEND_ACC_PRIVATE)); var_dump((bool) (uopz_flags("Test", "method", ZEND_ACC_FETCH) & ZEND_ACC_PRIVATE)); var_dump((bool) (uopz_flags("Test", "method", ZEND_ACC_FETCH) & ZEND_ACC_STATIC)); ?> The above example will output something similar to: bool(false) bool(false) int(1234567890) bool(true) bool(true) PHP Documentation Group UOPZ_FLAGS(3)

Check Out this Related Man Page

METHOD_EXISTS(3)							 1							  METHOD_EXISTS(3)

method_exists - Checks if the class method exists

SYNOPSIS
bool method_exists (mixed $object, string $method_name) DESCRIPTION
Checks if the class method exists in the given $object. PARAMETERS
o $object - An object instance or a class name o $method_name - The method name RETURN VALUES
Returns TRUE if the method given by $method_name has been defined for the given $object, FALSE otherwise. NOTES
Note Using this function will use any registered autoloaders if the class is not already known. EXAMPLES
Example #1 method_exists(3) example <?php $directory = new Directory('.'); var_dump(method_exists($directory,'read')); ?> The above example will output: bool(true) Example #2 Static method_exists(3) example <?php var_dump(method_exists('Directory','read')); ?> The above example will output: bool(true) SEE ALSO
function_exists(3), is_callable(3), class_exists(3). PHP Documentation Group METHOD_EXISTS(3)
Man Page