Object oriented php class simple example

后端 未结 2 1073
忘了有多久
忘了有多久 2021-02-05 20:09

i am beginner on php so now i try to learn object oriented i was goggling i got it some ideas but not clear concept.So i come there.Please any php guru give simple example of ho

2条回答
  •  终归单人心
    2021-02-05 20:27

    You have to create a class person and two methods..

    class Person{
        public $name;
            public function showName()
            {
                 echo $this->name;
            }
    
            public function enterName()
            {
                 //insert name into database
            }
    }
    

提交回复
热议问题