b::y PHP Method

y() public method

public y ( )
    function y()
    {
        self::definedInParent();
        self::definedInParentParent();
        self::undefined();
        self::definedinStatic();
        self::$pdefinedInParent;
        self::$pdefinedInParentParent;
        self::$pundefined;
        self::$pdefinedinStatic;
    }

Usage Example

コード例 #1
0
ファイル: AccessPrivate.01.php プロジェクト: exakat/exakat
 function __construct()
 {
     a::y();
     b::y();
     c::y();
     d::y();
     a::$x;
     b::$x;
     c::$x;
     d::$x;
     a::$xpr;
     b::$xpr;
     c::$xpr;
     d::$xpr;
 }
All Usage Examples Of b::y