ReflectionProperty::isPrivate

(PHP 5)

ReflectionProperty::isPrivateChecks if property is private

Description

public bool ReflectionProperty::isPrivate ( void )

Checks whether the property is private.

Parameters

This function has no parameters.

Return Values

TRUE if the property is private, FALSE otherwise.

See Also

Коментарии

/**
* Return 1 if property is public,
* else return void
*/
<?php

class Classname{
    public 
$variable;
}

$obj = new Classname;
$rp = new ReflectionProperty($obj,'variable');
echo 
$rp->isPublic();
2012-06-10 00:43:02
http://php5.kiev.ua/manual/ru/reflectionproperty.isprivate.html

    Поддержать сайт на родительском проекте КГБ