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

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


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

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