Neos\Flow\Reflection\ReflectionService::getClassNameByObject PHP 메소드

getClassNameByObject() 공개 메소드

Returns the class name of the given object. This is a convenience method that returns the expected class names even for proxy classes.
사용 중단: since 3.0 use \Neos\Utility\TypeHandling::getTypeForValue() instead
public getClassNameByObject ( object $object ) : string
$object object
리턴 string The class name of the given object
    public function getClassNameByObject($object)
    {
        return TypeHandling::getTypeForValue($object);
    }
ReflectionService