"PHP get class()"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-== 참고 자료 == +==참고==))
11번째 줄: 11번째 줄:


==같이 보기==
==같이 보기==
* [[PHP gettype()]] - Get the type of a variable
* [[PHP is_subclass_of()]] - Checks if the object has this class as one of its parents or implements it
* [[PHP get_called_class()]] - The "Late Static Binding" class name
* [[PHP get_parent_class()]] - Retrieves the parent class name for object or class
* [[PHP get_class_methods()]]
* [[PHP get_class_methods()]]
* [[PHP gettype()]]
* [[함수 get_class()]]
* [[함수 get_class()]]



2019년 3월 26일 (화) 11:24 판

1 개요

PHP get_class()
  • 주어진 객체의 클래스명을 반환하는 PHP 함수
class Foo {}
$a = new Foo();
echo get_class($a);
# Foo

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}