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

잔글 (봇: 자동으로 텍스트 교체 (-== 참고 자료 == +==참고==))
 
(사용자 2명의 중간 판 4개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
{{DISPLAYTITLE:PHP get_class()}}
;PHP get_class()
;PHP get_class()
* 주어진 객체의 클래스명을 반환하는 PHP 함수
* 주어진 객체의 클래스명을 반환하는 PHP 함수


<source lang='php'>
<syntaxhighlight lang='php' run>
class Foo {}
class Foo {}
$a = new Foo();
$a = new Foo();
echo get_class($a);
echo get_class($a); # Foo
# Foo
</syntaxhighlight>
</source>


==같이 보기==
==같이 보기==
* [[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()]]


18번째 줄: 21번째 줄:
* http://php.net/manual/en/function.get-class.php
* http://php.net/manual/en/function.get-class.php


[[분류: PHP]]
[[분류: PHP 클래스/객체 함수]]

2021년 9월 23일 (목) 17:31 기준 최신판

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 }}