딱 보기쉽게 클래스랑 객체지향 설명좀 부탁해요


<?php

 class Introduce{
    private $name;
    public function __construct($name){
        $this->name=$name;
    }
    public function show(){
        echo("My name is ". $this->name . ", sir.");
    }
 }

 $instance = new Introduce("Peter");
 $instance->show();

 ?>


이거하고있는데 객체지향뭔지몰라서요