update : 2015.11.03
php.shukuma.com

검색:
 
 
Get or set flags on function or class

uopz_flags

(PECL uopz >= 2.0.2)

uopz_flagsGet or set flags on function or class

설명

int uopz_flags ( string $class , string $function , int $flags )
int uopz_flags ( string $function , int $flags )

Get or set the flags on a class or function entry at runtime

인수

class

The name of a class

function

The name of the function

flags

A valid set of ZEND_ACC_ flags, ZEND_ACC_FETCH to read flags

반환값

If setting, returns old flags, else returns flags

예제

Example #1 uopz_flags() 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));
?>

위 예제의 출력 예시:

bool(false)
bool(false)
int(1234567890)
bool(true)
bool(true)