test() публичный Метод

public test ( )
Пример #1
0
<?php

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
class myClass
{
    public $name;
    public $age;
    protected static $test;
    static function test()
    {
        var_dump(property_exists('myClass', 'age'));
    }
}
myClass::test();
class TestClass
{
    public $declared = null;
}
$testObject = new TestClass();
$testObject->monkey = NULL;
//  kiem tra có phải 1 đối tượng cà tồn tại thuộc tính
var_dump(property_exists($testObject, 'monkey'));