Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> PHP

ฟังก์ชัน get_parent_class() ใน PHP


get_parent_class() ดึงชื่อคลาสหลักสำหรับอ็อบเจกต์หรือคลาส

ไวยากรณ์

get_parent_class(object)

พารามิเตอร์

  • วัตถุ − วัตถุหรือชื่อของคลาสที่ทดสอบแล้ว

คืนสินค้า

ฟังก์ชัน get_parent_class() จะคืนค่าชื่อของคลาสพาเรนต์ของคลาส

ตัวอย่าง

ต่อไปนี้เป็นตัวอย่าง −

<?php
class Demo {
   function Demo() {
   }
}
class Demo2 extends Demo {
   function Demo2() {
      echo "I'm " , get_parent_class($this) , "'s son \n";
   }
}
class Demo3 extends Demo {
   function Demo3() {
      echo "I'm " , get_parent_class('Demo2') , "'s son too \n";
   }
}
$one = new Demo2();
$two = new Demo3();
?>

ผลลัพธ์

I'm Demo's son
I'm Demo's son too