OOP Object Oriented Programming In PHP 7
OOP Object Oriented Programming In PHP 7, available at $94.99, has an average rating of 4.5, with 137 lectures, 17 quizzes, based on 833 reviews, and has 6765 subscribers.
You will learn about Most of the topics of object oriented programming given in PHP manual. Apply Advanced OOP concepts in your applications. Add OOP skill in your CV. This course is ideal for individuals who are If you are a newborn in php and have a very basic knowledge of php. or If you need php7 object oriented knowledge. or If you want to learn Object Oriented Programming using real life examples. or If you want to learn OOP concepts in detail. or If you wanted to add object oriented programming skill in your CV. or If you wanted to add some serious OOPness in your programming. or If you need prompt response from your instructor. It is particularly useful for If you are a newborn in php and have a very basic knowledge of php. or If you need php7 object oriented knowledge. or If you want to learn Object Oriented Programming using real life examples. or If you want to learn OOP concepts in detail. or If you wanted to add object oriented programming skill in your CV. or If you wanted to add some serious OOPness in your programming. or If you need prompt response from your instructor.
Enroll now: OOP Object Oriented Programming In PHP 7
Summary
Title: OOP Object Oriented Programming In PHP 7
Price: $94.99
Average Rating: 4.5
Number of Lectures: 137
Number of Quizzes: 17
Number of Published Lectures: 137
Number of Published Quizzes: 14
Number of Curriculum Items: 155
Number of Published Curriculum Objects: 151
Original Price: $89.99
Quality Status: approved
Status: Live
What You Will Learn
- Most of the topics of object oriented programming given in PHP manual.
- Apply Advanced OOP concepts in your applications.
- Add OOP skill in your CV.
Who Should Attend
- If you are a newborn in php and have a very basic knowledge of php.
- If you need php7 object oriented knowledge.
- If you want to learn Object Oriented Programming using real life examples.
- If you want to learn OOP concepts in detail.
- If you wanted to add object oriented programming skill in your CV.
- If you wanted to add some serious OOPness in your programming.
- If you need prompt response from your instructor.
Target Audiences
- If you are a newborn in php and have a very basic knowledge of php.
- If you need php7 object oriented knowledge.
- If you want to learn Object Oriented Programming using real life examples.
- If you want to learn OOP concepts in detail.
- If you wanted to add object oriented programming skill in your CV.
- If you wanted to add some serious OOPness in your programming.
- If you need prompt response from your instructor.
1st section of the course starts with an introduction to object oriented programming. What is OOP? and why we need it ? and what was before OOP?. A little detail about procedural language.We will also learn how to add OOPness in our programming. Then the advantages of object oriented programming.
In 2nd section we will discuss the basics of OOP with real life example and then how to map it in objects, classes, properties and method.
Then how to create objects and classes in php? How to add properties and methods? How to use them? And at the end of this section we will learn about parameters and return values of a method.
3rd section describes the visibility and its three levels. Then why we need to define public, private or protected visibility of properties and methods in a class.
4th section describes the concept of constants in classes.
5th section describes about data encapsulation. Why we need it? And how to implement it and then the benefits of encapsulation.
In 6th section we will discuss about inheritance with real life example. Then how to translate it in classes, properties and methods in php code. What is ISA and HASA relationship and where to use ISA and where to use HASA in classes and objects.
7th section describes the problem when a child class needs its own version of parent class method then how overriding of method solves this problem. Then how you can preserve parent class method’s functionality while overriding.
8th section describes how you can block inheritance and method overriding using final keyword.
9th section describes what is the meaning of abstract in real world, then what is the meaning of abstract classes, why we need i? What are the abstract methods and why we need it? Then we will also discuss how to create abstract classes and methods in php.
At the end what are the key points for abstract classes and methods.
In 10th section we will discuss what happens when two classes from completely different class hierarchies need some similar behaviour and how interface solve this problem.
In 11th section we will discuss what happens when an object is born and when it dies. How we can handle things in both situations using constructor and destructor. How to define and use constructor and destructor using magic methods __construct() and __destruct().
12th section describes a situation where we need only one copy of properties and methods for all objects of a class. Static keyword can solve this problem. So we will see how we can create and use static properties and methods without creating an object of a class.
In 13th section describes that there are 15 magic methods in php. So we will discuss these magic methods one by one in detail.
14th section is the biggest one in this course. In this we will discuss about errors and exceptions.
What supposed to be an error in php? How they happen? What are the different types of errors? .how you can trigger errors by yourself? And what are the logical error? Then we will see how we can report errors when they happen and how you can change error reporting settings in php.ini. We will also learn the 4 ways to deal with errors. Then how to use an error handler and at last how you can log error messages.
After errors we will discuss about what may be the risky behavior of your code and how we can use exceptions to handle that risky behaviour. We will see how we can try some risky behaviour then how we can throw an exception if anything wrong happens and how we can catch that exception. Then the detail discussion on exception class in php and the stack trace for the exception. Then how you can make your own custom exceptions by extending php’s built in exception class. Why we need to use try with multiple catches and how to re-throw an exception. What happens when there is an uncaught exception in your code.what is an exception handler.
Then at the end of this section we will discuss the changes in errors and exceptions in php7.
15th section describe how you can autoload classes in your code without using include and require statements. Then the use of autoloader function for this purpose. Then we will discuss to autoload namespace classes in your code using Psr-0 and Psr-4 autoloading standards but before that we will discuss what are the namespaces in php.
16th section is about object serialization. Why we need to serialize an object. Then when and how to unserialize it. We will also learn how to do task that are prior to serializing an object using __sleep() magic method.Then how to do task right away after unserializing an object using __wakeup() magic method.
17th section is about cloning of an object in which we will discuss two types of cloning that are shallow copy and deep copy. In deep copy cloning we will also discuss about __clone() magic method. Then we will see recursive cloning and then double linking problem in cloning. At the end we will discuss Deep copy cloning using serialization.
18th section is about Type hinting. In this we will see how we can use non scalar and scalar data types for type hinting. We will also discuss about strict scalar data types and TypeError exception thats been introduced in php7.
In 19th section we will learn two ways of comparing objects. First one is using Comparison operator (==) and 2nd one is using Identity operator (===).
20th section is about overloading an object. we will learn How to do property overloading Using __get(), __set(), __isset() and __unset() magic methods. Then how to do method overloading Using __call(), __callStatic() magic methods.
21st section describes about traits. First we will discuss deadly diamond of death problem in multiple inheritance. Then single inheritance and its limitations. Then how traits provide multiple inheritance thing in php. Then what will be the precedence order if a parent class and a trait have same method and then what will be the precedence order if a trait and current class have the same method. We will also discuss to use multiple traits and then how to compose a trait from other traits.
At the end we will discuss abstract and static trait members and trait properties.
22nd section describes late static binding. For this first we will discuss some basic concepts of binding like what is binding, early binding and late binding?
Then what is the problem with early binding of self keyword and at the end its solution which is late static binding.
23rd section describes object iteration. First we will get some idea about some basic concepts like traverse, iterate and iterate using loops. Then what is object iteration and how you can iterate an object using Iterator Interface and IteratorAggregate Interface .
Course Curriculum
Chapter 1: Overview of the course
Lecture 1: Sections Overview
Chapter 2: Introduction to Object Oriented Programming
Lecture 1: Introduction To Object Oriented Programming
Chapter 3: Basics of Object Oriented Programming
Lecture 1: Classes And Objects
Lecture 2: Properties And Methods
Lecture 3: Creating Classes And Objects In PHP
Lecture 4: Creating And Accessing Properties
Lecture 5: Print The Whole Object
Lecture 6: Defining And Calling Methods
Lecture 7: Accessing Object Properties From Methods
Lecture 8: Parameters And Return Value Of Methods
Lecture 9: PHP Source Files Used In "Basics of Object Oriented Programming" Lectures
Lecture 10: Solution: Simple Calculator
Chapter 4: Visibility
Lecture 1: Visibility
Lecture 2: Php Source Files Used In "Visibility" Section
Chapter 5: Class Constants
Lecture 1: Class Constants
Lecture 2: Php Source Files Used In "Class Constants" Section
Chapter 6: Data Encapsulation
Lecture 1: Data Encapsulation
Lecture 2: Php Source Files Used In "Data Encapsulation" Section
Lecture 3: Solution: CreditCard Class (shopping using credit card)
Lecture 4: Solution: Withdraw Money From Credit Card
Chapter 7: Inheritance
Lecture 1: Inheritance
Lecture 2: Real Life Example Of Inheritance
Lecture 3: Visibility Level Protected In Inheritance
Lecture 4: ISA Vs HASA
Lecture 5: Php Source Files Used In "Inheritance" Section
Chapter 8: Overriding
Lecture 1: Overriding
Lecture 2: Preserving Parent Class Functionality in overriding
Lecture 3: Php Source Files Used In "Overriding" Section
Chapter 9: Final Keyword
Lecture 1: Final Classes And Methods
Lecture 2: Php Source Files Used In "Final Keyword" Section
Chapter 10: Abstract classes and methods
Lecture 1: Abstract Classes And Methods
Lecture 2: Php Source Files Used In "Abstract Classes And Methods" Section
Chapter 11: Interfaces
Lecture 1: Interfaces
Lecture 2: The difference between abstract classes and interfaces
Lecture 3: Php Source Files Used In "Interfaces" Section
Chapter 12: Constructor and Destructor
Lecture 1: What Is Constructor And Destructor?
Lecture 2: Constructor Using __construct() Magic Method
Lecture 3: Destructor Using __destruct() Magic Method
Lecture 4: Php Source Files Used In "Constructor And Destructor" Section
Lecture 5: Solution: Create an object who's life is 5 seconds
Chapter 13: Static Properties And Methods
Lecture 1: Static Keyword And Static Properties
Lecture 2: Static Methods
Lecture 3: Php Source Files Used In "Static Properties And Methods" Section
Lecture 4: Solution: Singleton Pattern
Chapter 14: Magic Methods
Lecture 1: Magic Methods
Lecture 2: 11 Magic Methods In Different Topics
Lecture 3: __toString() Magic Method
Lecture 4: __set_state() Magic Method
Lecture 5: __invoke() Magic Method
Lecture 6: __debugInfo() Magic Method
Lecture 7: Php Source Files Used In "Magic Methods" Section
Chapter 15: Errors and exceptions in php
Lecture 1: Introduction to Errors And Exception
Lecture 2: Errors and Their Types
Lecture 3: Sub Types Of Errors
Lecture 4: Notices
Lecture 5: Warnings
Lecture 6: Fatal Errors
Lecture 7: Parser Errors
Lecture 8: Strict Standards Notices
Lecture 9: E_ALL And Error Level Constants
Lecture 10: Triggering Errors
Lecture 11: When These Errors Occur In Life Cycle Of Your Script
Lecture 12: Logical Errors
Lecture 13: Error Reporting Settings In php ini
Lecture 14: What To Do With Errors?
Lecture 15: Display Errors
Lecture 16: Logging Your Own Error Messages
Lecture 17: How To Handle Errors With Error Handler
Lecture 18: What Actually The Exceptions Are What They Actually Do?
Lecture 19: Try, Throw and Catch
Lecture 20: The Exception Class In PHP
Lecture 21: Stack Trace For Exception
Lecture 22: Creating Your Own Custom Exceptions
Lecture 23: Try With Multiple Catch Blocks
Instructors
-
Saira Sadiq
Saira Sadiq
Rating Distribution
- 1 stars: 8 votes
- 2 stars: 20 votes
- 3 stars: 97 votes
- 4 stars: 283 votes
- 5 stars: 426 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Digital Marketing Foundation Course
- Google Shopping Ads Digital Marketing Course
- Multi Cloud Infrastructure for beginners
- Master Lead Generation: Grow Subscribers & Sales with Popups
- Complete Copywriting System : write to sell with ease
- Product Positioning Masterclass: Unlock Market Traction
- How to Promote Your Webinar and Get More Attendees?
- Digital Marketing Courses
- Create music with Artificial Intelligence in this new market
- Create CONVERTING UGC Content So Brands Will Pay You More
- Podcast: The top 8 ways to monetize by Podcasting
- TikTok Marketing Mastery: Learn to Grow & Go Viral
- Free Digital Marketing Basics Course in Hindi
- MailChimp Free Mailing Lists: MailChimp Email Marketing
- Automate Digital Marketing & Social Media with Generative AI
- Google Ads MasterClass – All Advanced Features
- Online Course Creator: Create & Sell Online Courses Today!
- Introduction to SEO – Basic Principles of SEO
- Affiliate Marketing For Beginners: Go From Novice To Pro
- Effective Website Planning Made Simple