PHP Object Oriented Programming (OOP) For Beginners Lesson 2

preview_player
Показать описание
The second PHP Object Oriented Programming lesson by Peter Fisher
In this tutorial we talk about the class inheritance

==== GET EARLY ACCESS TO FUTURE VIDEOS & TUTORIALS ====

======== RECOMMENDED PROGRAMMING RESOURCES ========

PHP Books:

PHP Hosting from Cloudways:

======== MY PROGRAMMING COURSES ========

======== WEB HOSTING DEALS ========

======== SUBSCRIBE TO THE NEWSLETTER ========

======== FOLLOW ME ========

======== MY TALKS ========

======== SUPPORT THE CHANNEL ========

======== VIDEO SETUP ========

#php #learnToCode #howtocodewell ## Become a channel member
Join the How to code well YouTube channel to get access to premium programming courses, tutorials and member perks
Рекомендации по теме
Комментарии
Автор

One of the best tutorials on php. Thanks a lot!

clementk.
Автор

your videos are very good for beginners like me!

super.claude
Автор

Great series, great tutorials. What text editor do you use in your videos? Keep up the good work.

DesktopChronicles
Автор

How about inheritance using database connections, example PDO? Have troubles figuring out how to properly instantiate classes Book and DVD where both extend abstract parent class.

zz
Автор

This also works:

public function say_big_hello(){
$say = $this->say_hello(). " working as the ";
$say = $say . $this->job_title;
return $say;
} // End Func


Is it a good idea?

lawrencerosen