ReflectionProperty::export

(PHP 5, PHP 7)

ReflectionProperty::exportExport

설명

public static string ReflectionProperty::export ( mixed $class , string $name [, bool $return ] )

Exports a reflection.

Warning

이 함수는 현재 문서화 되어있지 않습니다; 인수 목록만을 제공합니다.

인수

argument

내보낼 reflection

name

The property name.

return

TRUE로 설정하면 export를 반환하고, 반대의 경우는 버립니다. FALSE로 설정(기본값)은 반대를 수행합니다.

반환값

참고

  • ReflectionProperty::toString()

add a note add a note

User Contributed Notes 1 note

up
0
antonfedonyuk at gmail dot com
3 years ago
Note: export() method is deprecated in PHP 7.4, use __toString() instead - this method return same result.
To Top