SlideShare a Scribd company logo
1 of 32
Download to read offline
OOP with PHP
 Kadhem Soltani
 Soltani.kadhem@novavision-it.com
 http://kadhem-soltani.com/blog/
http://novavision-it.com/
Whats in store
OOP Introduction
Classes and Objects
Encapsulation
Polymorphism
Inheritance
OOP introduction
Introduction to OOP
Concepts are represented as objects
Objects have properties which contain information about the
object
Functions associated with objects are called methods
Classes and objects
Classes and Objects
A class is a definition of an object. It is a file containing:
The namespace of the class
The name of the class
A list of the properties of the class
Implementations of any methods
A class becomes an object when it is instantiated with the
new keyword
Defining a class
<?php
class MyClass {
// implementation of the class goes in here
}
Visibility
Public refers to methods and properties which can be
accessed or called from both within the object itself and
outside of the object (e.g. other files and objects)
Private refers to methods and properties which can only be
accessed or called from within the object itself
Protected refers to methods and properties which can be
accessed or called from within the object itself and objects
which extend from the object (child objects)
Methods and Properties
<?php
class MyClass {
private $someProperty = 'a default value';
private $anotherPropert;
public function myMethod()
{
echo "This is my method being run";
}
}
Magic Methods
These are methods which are called
automatically when certain actions are
undertaken, though they can be manually
called too.
Typically prefixed with two underscores
Magic methods
__construct the constructor method; called on an object as
soon as it is instantiated. It can accept parameters.
__destruct the destructor method; called when an object stops
being used/referenced or during shutdown sequence
__toString is called when you try to use an object as a string
(e.g. echo $my_object) and returns the string representation of
the object
__clone is called when you try and clone an object (e.g.
$new_object = clone $old_object) useful for dereferencing any
unique IDs, etc.
Full list: http://php.net/manual/en/language.oop5.magic.php
With a constructor
<?php
class MyClass {
private $someProperty = 'a default value';
private $anotherPropert;
public function __construct()
{
echo "this is called when you create the object";
}
public function myMethod()
{
echo "This is my method being run";
}
}
Working with objects
Creating
$my_object = new SomeObject();
Accessing properties
echo $my_object->someProperty; // must be public
Calling methods
$my_object->someMethods(); // must be public
$this
When working within an object, you access properties
and methods within the object using the $this keyword.
For example, consider a method which returns the total
cost for an order. This needs to add the cost and the
delivery cost. Both of these costs are calculated using
other methods
return $this->calculateCost() + $this->calculateDeliveryCost();
Static
Properties can be accessed and methods can
be called from an uninstantiated class (i.e. not
an object) if they are prefixed with the static
keyword. They are called and accessed with
the Scope Resolution Operator (::)
class MyClass {
public static function printHello()
{
print “hello”;
}
}
MyClass::printHello();
Class constants
Classes can also contain constants; these are similar to
properties except they cannot be changed (unless you edit
the php file of course!)
const myConstant = “some value”;
Interfaces and Implements
An interface defines non-private methods (as well as the
number of parameters they accept) that a class which
implements the interface must have
If a class specifically implements an interface it must
implement the methods defined, if it does not PHP will raise
errors.
Defining an interface
<?php
interface MyInterface {
public function mustImplementThis();
public function mustImplementThisAsWell($with, $some, $parameters=null);
}
Creating a class which implements
an interface
<?php
class MyClass implements MyInterface {
public function mustImplementThis()
{
// put some code here
}
public function mustImplementThisAsWell($with, $some, $parameters=null)
{
// put some code here
}
}
Extends
One class can extend another. When it does this the class
inherits properties, methods and constants from the parent
class (the one it extends) - this is where visibility settings are
essential.
Public and protected properties and methods can be
overridden in the child class; provided the method names and
number of parameters match.
Extends in action
<?php
class MyChildClass extends MyParentClass {
// now we have a class which has the same properties
// and methods as the MyParentClass
// we can add new ones here and override the parent ones
// if we want to
}
Parent keyword
If you have a method in a child class from which you want to access
properties or methods in the parent class, you use the parent
keyword with the scope resolution operator.
<?php
class Someclass extends Parentclass {
public function test()
{
// this will call the someMethod method
// in the Parentclass class
echo parent::someMethod();
}
}
Abstract class
An abstract class gives us the best of both worlds; we can
define methods which need to be implemented and we can
create methods and properties which can be extended by a
child class
An abstract class is defined using the abstract keyword
However...an abstract class cannot be instantiated directly.
Only a class which extends it can be instantiated.
Defining an abstract class
<?php
abstract class MyAbstractClass {
protected $someProperty;
public function implementMe();
public function implementMeToo();
protected function someMethod()
{
echo 'a';
}
public function __toString()
{
return $this->someProperty;
}
}
Using an abstract class
<?php
class MyClass extends AbstractClass {
protected $someProperty;
public function implementMe()
{
// implementation
}
public function implementMeToo()
{
// implementation
}
// we dont need to implement someMethod() or __toString
// as the abstract class implements them
// we can override them if we want to
}
Encapsulation
Encapsulation
With encapsulation the internal representation of an
object is hidden from view outside of the class. Often only the
object itself is permitted to directly access and modify its
properties.
This approach means we, the programmer, can have greater
control over how these properties are modified.
Imagine setting an email address property when a user fills out a
contact form. If the property is public, then the property could be
any value. If we hide the property and use a setter method, we can
put some business logic between the user input and the property
such as some validation.
Polymorphism
Polymorphism
Polymorphism allows an object,
variable or function have more
than one form.
Why polymorphism
You have a class (Email) which represents an email
You have a number of classes which can take an email
object and send it using a specific technology (e.g. SMTP,
sendmail, postmarkapp) lets use SmtpTransport as an
example
When you need to send an email you have some code
(emailer code) which takes the email, takes the
SmtpTransport and links the two together
If you want to use your other class, PostmarkappTransport
how does “email code” know how to work with
PostmarkappTransport...these are both different classes
Why polymorphism...
Answer: Interfaces and polymorphism
We have a TransportInterface which defines the public methods we will
use to send the email
The *Transport classes all implement this and use their implementations
of the public methods to send the email differently
Our email code doesn’t care about if its given a SmtpTransport or
PostmarkappTransport it only cares if they implement the
TransportInterface
Through polymorphism our Transport classes are both instances of:
*Transport
TransportInterface
Type hinting to require an interface
function myEmailCode(TransportInterface $transport, $email)
{
$transport->setEmail($email);
if( ! $transport->send() ) {
echo $transport->getErrors();
}
}

More Related Content

Similar to Object_oriented_programming_OOP_with_PHP.pdf

Oop features java presentationshow
Oop features java presentationshowOop features java presentationshow
Oop features java presentationshowilias ahmed
 
Object oreinted php | OOPs
Object oreinted php | OOPsObject oreinted php | OOPs
Object oreinted php | OOPsRavi Bhadauria
 
oops-123991513147-phpapp02.pdf
oops-123991513147-phpapp02.pdfoops-123991513147-phpapp02.pdf
oops-123991513147-phpapp02.pdfArpitaJana28
 
Application package
Application packageApplication package
Application packageJAYAARC
 
Object Oriented PHP by Dr.C.R.Dhivyaa Kongu Engineering College
Object Oriented PHP by Dr.C.R.Dhivyaa Kongu Engineering CollegeObject Oriented PHP by Dr.C.R.Dhivyaa Kongu Engineering College
Object Oriented PHP by Dr.C.R.Dhivyaa Kongu Engineering CollegeDhivyaa C.R
 
09 Object Oriented Programming in PHP #burningkeyboards
09 Object Oriented Programming in PHP #burningkeyboards09 Object Oriented Programming in PHP #burningkeyboards
09 Object Oriented Programming in PHP #burningkeyboardsDenis Ristic
 
Object oriented programming in php
Object oriented programming in phpObject oriented programming in php
Object oriented programming in phpAashiq Kuchey
 
(An Extended) Beginners Guide to Object Orientation in PHP
(An Extended) Beginners Guide to Object Orientation in PHP(An Extended) Beginners Guide to Object Orientation in PHP
(An Extended) Beginners Guide to Object Orientation in PHPRick Ogden
 
Advanced php
Advanced phpAdvanced php
Advanced phphamfu
 
Jedi slides 2.1 object-oriented concepts
Jedi slides 2.1 object-oriented conceptsJedi slides 2.1 object-oriented concepts
Jedi slides 2.1 object-oriented conceptsMaryo Manjaruni
 
Class 7 - PHP Object Oriented Programming
Class 7 - PHP Object Oriented ProgrammingClass 7 - PHP Object Oriented Programming
Class 7 - PHP Object Oriented ProgrammingAhmed Swilam
 
Basic Oops concept of PHP
Basic Oops concept of PHPBasic Oops concept of PHP
Basic Oops concept of PHPRohan Sharma
 

Similar to Object_oriented_programming_OOP_with_PHP.pdf (20)

Oop features java presentationshow
Oop features java presentationshowOop features java presentationshow
Oop features java presentationshow
 
Object oreinted php | OOPs
Object oreinted php | OOPsObject oreinted php | OOPs
Object oreinted php | OOPs
 
oops-123991513147-phpapp02.pdf
oops-123991513147-phpapp02.pdfoops-123991513147-phpapp02.pdf
oops-123991513147-phpapp02.pdf
 
Application package
Application packageApplication package
Application package
 
UNIT III (8).pptx
UNIT III (8).pptxUNIT III (8).pptx
UNIT III (8).pptx
 
UNIT III (8).pptx
UNIT III (8).pptxUNIT III (8).pptx
UNIT III (8).pptx
 
Object Oriented PHP by Dr.C.R.Dhivyaa Kongu Engineering College
Object Oriented PHP by Dr.C.R.Dhivyaa Kongu Engineering CollegeObject Oriented PHP by Dr.C.R.Dhivyaa Kongu Engineering College
Object Oriented PHP by Dr.C.R.Dhivyaa Kongu Engineering College
 
09 Object Oriented Programming in PHP #burningkeyboards
09 Object Oriented Programming in PHP #burningkeyboards09 Object Oriented Programming in PHP #burningkeyboards
09 Object Oriented Programming in PHP #burningkeyboards
 
Object oriented programming in php
Object oriented programming in phpObject oriented programming in php
Object oriented programming in php
 
(An Extended) Beginners Guide to Object Orientation in PHP
(An Extended) Beginners Guide to Object Orientation in PHP(An Extended) Beginners Guide to Object Orientation in PHP
(An Extended) Beginners Guide to Object Orientation in PHP
 
JAVA-PPT'S.pdf
JAVA-PPT'S.pdfJAVA-PPT'S.pdf
JAVA-PPT'S.pdf
 
Php oop (1)
Php oop (1)Php oop (1)
Php oop (1)
 
Advanced php
Advanced phpAdvanced php
Advanced php
 
Jedi slides 2.1 object-oriented concepts
Jedi slides 2.1 object-oriented conceptsJedi slides 2.1 object-oriented concepts
Jedi slides 2.1 object-oriented concepts
 
Class 7 - PHP Object Oriented Programming
Class 7 - PHP Object Oriented ProgrammingClass 7 - PHP Object Oriented Programming
Class 7 - PHP Object Oriented Programming
 
Oops in php
Oops in phpOops in php
Oops in php
 
Basic Oops concept of PHP
Basic Oops concept of PHPBasic Oops concept of PHP
Basic Oops concept of PHP
 
Introduction Php
Introduction PhpIntroduction Php
Introduction Php
 
Demystifying oop
Demystifying oopDemystifying oop
Demystifying oop
 
Chapter 12
Chapter 12Chapter 12
Chapter 12
 

Recently uploaded

Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfjimielynbastida
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 

Recently uploaded (20)

Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdf
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 

Object_oriented_programming_OOP_with_PHP.pdf

  • 1. OOP with PHP  Kadhem Soltani  Soltani.kadhem@novavision-it.com  http://kadhem-soltani.com/blog/ http://novavision-it.com/
  • 2. Whats in store OOP Introduction Classes and Objects Encapsulation Polymorphism Inheritance
  • 4. Introduction to OOP Concepts are represented as objects Objects have properties which contain information about the object Functions associated with objects are called methods
  • 6. Classes and Objects A class is a definition of an object. It is a file containing: The namespace of the class The name of the class A list of the properties of the class Implementations of any methods A class becomes an object when it is instantiated with the new keyword
  • 7. Defining a class <?php class MyClass { // implementation of the class goes in here }
  • 8. Visibility Public refers to methods and properties which can be accessed or called from both within the object itself and outside of the object (e.g. other files and objects) Private refers to methods and properties which can only be accessed or called from within the object itself Protected refers to methods and properties which can be accessed or called from within the object itself and objects which extend from the object (child objects)
  • 9. Methods and Properties <?php class MyClass { private $someProperty = 'a default value'; private $anotherPropert; public function myMethod() { echo "This is my method being run"; } }
  • 10. Magic Methods These are methods which are called automatically when certain actions are undertaken, though they can be manually called too. Typically prefixed with two underscores
  • 11. Magic methods __construct the constructor method; called on an object as soon as it is instantiated. It can accept parameters. __destruct the destructor method; called when an object stops being used/referenced or during shutdown sequence __toString is called when you try to use an object as a string (e.g. echo $my_object) and returns the string representation of the object __clone is called when you try and clone an object (e.g. $new_object = clone $old_object) useful for dereferencing any unique IDs, etc. Full list: http://php.net/manual/en/language.oop5.magic.php
  • 12. With a constructor <?php class MyClass { private $someProperty = 'a default value'; private $anotherPropert; public function __construct() { echo "this is called when you create the object"; } public function myMethod() { echo "This is my method being run"; } }
  • 13. Working with objects Creating $my_object = new SomeObject(); Accessing properties echo $my_object->someProperty; // must be public Calling methods $my_object->someMethods(); // must be public
  • 14. $this When working within an object, you access properties and methods within the object using the $this keyword. For example, consider a method which returns the total cost for an order. This needs to add the cost and the delivery cost. Both of these costs are calculated using other methods return $this->calculateCost() + $this->calculateDeliveryCost();
  • 15. Static Properties can be accessed and methods can be called from an uninstantiated class (i.e. not an object) if they are prefixed with the static keyword. They are called and accessed with the Scope Resolution Operator (::) class MyClass { public static function printHello() { print “hello”; } } MyClass::printHello();
  • 16. Class constants Classes can also contain constants; these are similar to properties except they cannot be changed (unless you edit the php file of course!) const myConstant = “some value”;
  • 17. Interfaces and Implements An interface defines non-private methods (as well as the number of parameters they accept) that a class which implements the interface must have If a class specifically implements an interface it must implement the methods defined, if it does not PHP will raise errors.
  • 18. Defining an interface <?php interface MyInterface { public function mustImplementThis(); public function mustImplementThisAsWell($with, $some, $parameters=null); }
  • 19. Creating a class which implements an interface <?php class MyClass implements MyInterface { public function mustImplementThis() { // put some code here } public function mustImplementThisAsWell($with, $some, $parameters=null) { // put some code here } }
  • 20. Extends One class can extend another. When it does this the class inherits properties, methods and constants from the parent class (the one it extends) - this is where visibility settings are essential. Public and protected properties and methods can be overridden in the child class; provided the method names and number of parameters match.
  • 21. Extends in action <?php class MyChildClass extends MyParentClass { // now we have a class which has the same properties // and methods as the MyParentClass // we can add new ones here and override the parent ones // if we want to }
  • 22. Parent keyword If you have a method in a child class from which you want to access properties or methods in the parent class, you use the parent keyword with the scope resolution operator. <?php class Someclass extends Parentclass { public function test() { // this will call the someMethod method // in the Parentclass class echo parent::someMethod(); } }
  • 23. Abstract class An abstract class gives us the best of both worlds; we can define methods which need to be implemented and we can create methods and properties which can be extended by a child class An abstract class is defined using the abstract keyword However...an abstract class cannot be instantiated directly. Only a class which extends it can be instantiated.
  • 24. Defining an abstract class <?php abstract class MyAbstractClass { protected $someProperty; public function implementMe(); public function implementMeToo(); protected function someMethod() { echo 'a'; } public function __toString() { return $this->someProperty; } }
  • 25. Using an abstract class <?php class MyClass extends AbstractClass { protected $someProperty; public function implementMe() { // implementation } public function implementMeToo() { // implementation } // we dont need to implement someMethod() or __toString // as the abstract class implements them // we can override them if we want to }
  • 27. Encapsulation With encapsulation the internal representation of an object is hidden from view outside of the class. Often only the object itself is permitted to directly access and modify its properties. This approach means we, the programmer, can have greater control over how these properties are modified. Imagine setting an email address property when a user fills out a contact form. If the property is public, then the property could be any value. If we hide the property and use a setter method, we can put some business logic between the user input and the property such as some validation.
  • 29. Polymorphism Polymorphism allows an object, variable or function have more than one form.
  • 30. Why polymorphism You have a class (Email) which represents an email You have a number of classes which can take an email object and send it using a specific technology (e.g. SMTP, sendmail, postmarkapp) lets use SmtpTransport as an example When you need to send an email you have some code (emailer code) which takes the email, takes the SmtpTransport and links the two together If you want to use your other class, PostmarkappTransport how does “email code” know how to work with PostmarkappTransport...these are both different classes
  • 31. Why polymorphism... Answer: Interfaces and polymorphism We have a TransportInterface which defines the public methods we will use to send the email The *Transport classes all implement this and use their implementations of the public methods to send the email differently Our email code doesn’t care about if its given a SmtpTransport or PostmarkappTransport it only cares if they implement the TransportInterface Through polymorphism our Transport classes are both instances of: *Transport TransportInterface
  • 32. Type hinting to require an interface function myEmailCode(TransportInterface $transport, $email) { $transport->setEmail($email); if( ! $transport->send() ) { echo $transport->getErrors(); } }