SlideShare uma empresa Scribd logo
1 de 31
Baixar para ler offline
PHP: Hypertext
Preprocessor
PHP - OOP
@d_danailov
PHP : Intro
Dimitar Danailov
Senior Developer at 158ltd.com
dimityr.danailov[at]gmail.com
Github
Slide Share
Founder at VarnaIT
Senior Developer at 158ltd.com
Topics Today
●
●
●
●
●
●

Object-oriented programming Overview
Objects & Classes
Abstraction and encapsulation
Inheritance
Polymorphism
Class Diagrams
OOP
Object-oriented programming (OOP) is a programming
paradigm that represents concepts as "objects" that have
data fields (attributes that describe the object) and
associated procedures known as methods. Objects, which
are usually instances of classes, are used to interact with
one another to design applications and computer
programs. C++, Objective-C, Smalltalk, Java and C# are
examples of object-oriented programming languages.
OOP (2)
●
●
●
●

Objects & Classes
Abstraction and encapsulation
Inheritance
Polymorphism
Objects & Classes
What is an object
Objects are the elements through which we perceive the
world around us. All objects have these characteristics :
● Identity
● State
● Behaviour
<?php
//Objects
$human = new stdClass();
$human->gender = 'm';
$human->age = 35;
$human->name = 'Todor Dimov';
$child1 = new stdClass();
$child1->name = 'Dimo Todorov';
$child2 = new stdClass();
$child2->name = 'Todorka Todorova';
$human->childrens = array($child1, $child2);
var_dump($human);
?>
Classes (classification of objects)
A class is a group of objects with same attributes and
behavior. The characteristics of a class are :
● A name
● Attributes
● Methods / Functions
<?php
/* Classes */
class Human {
private $name = null;
private $gender = null;
private $age = null;
private $childrens = array();
public function __construct($name, $gender, $age, $childrens
= array()) {
$this->name = $name;
$this->gender = $gender;
$this->age = $age;
$this->childrens = $childrens;
}
}
/* … */
?>
<?php
/* ... */
$child1 = new Human('Dimo Todorov', 'm', 12);
$child2 = new Human('Todorka Todorova', 'f', 16);
$childrens = array($child1, $child2);
$human = new Human('Todor Dimov', 'm', 35, $childrens);
var_dump($human);
?>
Abstraction and
encapsulation
Abstraction
In computer science, abstraction is the process by which
data and programs are defined with a representation
similar in form to its meaning (semantics), while hiding
away the implementation details. Abstraction tries to
reduce and factor out details so that the programmer can
focus on a few concepts at a time. A system can have
several abstraction layers whereby different meanings
and amounts of detail are exposed to the programmer.
Encapsulation
Encapsulation is the practice of including in an object
everything it needs hidden from the other objects in the
system.
Inheritance
Inheritance
In object-oriented programming (OOP), inheritance is a
way to establish Is-a relationships between objects. In
classical inheritance where objects are defined by
classes, classes can inherit attributes and behavior from
pre-existing classes called base classes, superclasses, or
parent classes.
// Inheritance
class Human
{
private $name = null;
private $gender = null;
private $age = null;
public function __construct($name, $gender, $age) {
$this->name = $name;
$this->gender = $gender;
$this->age = $age;
}
static function prinHello($name) {
echo 'Hello, ' . $name;
}
private function greetings() {
echo 'Greetings';
}
}
class ParentClass extends Human {
private $name = null;
private $gender = null;
private $age = null;
private $childrens = array();
public function __construct ($name, $gender, $age) {
$this->name = $name;
$this->gender = $gender;
$this->age = $age;
}
public function getName() {
//$this->greetings();
return parent::prinHello($this->name);
}
public function getChildrens () {
return $this->childrens;
}
public function setChildren (Child $child) {
$this->childrens[] = $child;
}
}
Class Child extends Human {
private $parents = array();
public function __construct($name, $gender, $age) {
$this->name = $name;
$this->gender = $gender;
$this->age = $age;
}
public function getParents() {
return $this->parents;
}
public function setParent(ParentClass $parent) {
$this->parents[] = $parent;
}
}
Polymorphism
Polymorphism
Polymorphism describes a pattern in object oriented
programming in which classes have different functionality
while sharing a common interface.
Abstract Classes
Class Abstraction
PHP 5 introduces abstract classes and methods. Classes
defined as abstract may not be instantiated, and any class
that contains at least one abstract method must also be
abstract. Methods defined as abstract simply declare the
method's signature - they cannot define the
implementation.
<?php
abstract class AbstractHuman {
private $name = null;
private $gender = null;
private $age = null;
public function __construct ($name, $gender, $age) {
$this->name = $name;
$this->gender = $gender;
$this->age = $age;
}
abstract public function getName();
abstract public function setName($name);
abstract public function getGender ();
abstract public function setGender ($gender);
abstract public function getAge();
abstract public function setAge($age);
}
?>
<?php
class ParentClass extends AbstractHuman {
public function getName() {
return $this->name;
}
public function setName($name) {
$this->name = $name;
}
public function getGender () {
return $this->gender;
}
public function setGender ($gender) {
$this->gender = $gender;
}

// ...
}
?>
Interfaces
Object Interfaces
Object interfaces allow you to create code which specifies
which methods a class must implement, without having to
define how these methods are handled.
Interfaces are defined using the interface keyword, in the
same way as a standard class, but without any of the
methods having their contents defined.
All methods declared in an interface must be public, this is
the nature of an interface.
<?php
// Interfaces
interface iHuman {
public function getName();
public function setName($name);
public function getGender();
public function setGender($gender);
public function getAge();
public function setAge($age);
}
?>
<?php
class ParentClass implements iHuman {
public function getName() {
return $this->name;
}
public function setName($name) {
$this->name = $name;
}
public function getGender() {
return $this->gender;
}
public function setGender($gender) {
$this->gender = $gender;
}
// ...
}
?>
Class Diagrams
Questions ?
Dimitar Danailov
Senior Developer at 158ltd.com
dimityr.danailov[at]gmail.com
Github
Slide Share
Founder at VarnaIT
Senior Developer at 158ltd.com

Mais conteúdo relacionado

Mais de Dimitar Danailov

Mais de Dimitar Danailov (20)

Data Visualization and D3Js
Data Visualization and D3JsData Visualization and D3Js
Data Visualization and D3Js
 
#Productivity - {S:01 Ep:03}
#Productivity - {S:01 Ep:03} #Productivity - {S:01 Ep:03}
#Productivity - {S:01 Ep:03}
 
#Productivity - {S:01 Ep:02}
#Productivity - {S:01 Ep:02}#Productivity - {S:01 Ep:02}
#Productivity - {S:01 Ep:02}
 
#Productivity s01 ep02
#Productivity s01 ep02#Productivity s01 ep02
#Productivity s01 ep02
 
#Productivity s01 ep01
#Productivity s01 ep01#Productivity s01 ep01
#Productivity s01 ep01
 
Cloud Conf Varna - Cloud Application with AWS Lambda functions
Cloud Conf Varna - Cloud Application with AWS Lambda functionsCloud Conf Varna - Cloud Application with AWS Lambda functions
Cloud Conf Varna - Cloud Application with AWS Lambda functions
 
DEV.BG - Angular 1 and Jasmine (Unit Testing and TDD)
DEV.BG - Angular 1 and Jasmine (Unit Testing and TDD)DEV.BG - Angular 1 and Jasmine (Unit Testing and TDD)
DEV.BG - Angular 1 and Jasmine (Unit Testing and TDD)
 
Building modern Progressive Web Apps with Polymer
Building modern Progressive Web Apps with PolymerBuilding modern Progressive Web Apps with Polymer
Building modern Progressive Web Apps with Polymer
 
Typescript - MentorMate Academy
Typescript - MentorMate AcademyTypescript - MentorMate Academy
Typescript - MentorMate Academy
 
HackConf2016 - Ruby on Rails: Unexpected journey
HackConf2016 - Ruby on Rails: Unexpected journeyHackConf2016 - Ruby on Rails: Unexpected journey
HackConf2016 - Ruby on Rails: Unexpected journey
 
Microservices - Code Voyagers Sofia
Microservices - Code Voyagers SofiaMicroservices - Code Voyagers Sofia
Microservices - Code Voyagers Sofia
 
Mongo DB Terms - Mentormate Academy
Mongo DB Terms - Mentormate AcademyMongo DB Terms - Mentormate Academy
Mongo DB Terms - Mentormate Academy
 
Startup Europe Week - Cloud Conf Varna & GDG Varna
Startup Europe Week - Cloud Conf Varna & GDG VarnaStartup Europe Week - Cloud Conf Varna & GDG Varna
Startup Europe Week - Cloud Conf Varna & GDG Varna
 
GDG Varna - Hadoop
GDG Varna - HadoopGDG Varna - Hadoop
GDG Varna - Hadoop
 
MicroServices: Advantages ans Disadvantages
MicroServices: Advantages ans DisadvantagesMicroServices: Advantages ans Disadvantages
MicroServices: Advantages ans Disadvantages
 
GDG Varna - EcmaScript 6
GDG Varna - EcmaScript 6GDG Varna - EcmaScript 6
GDG Varna - EcmaScript 6
 
Softuni.bg - Microservices
Softuni.bg - MicroservicesSoftuni.bg - Microservices
Softuni.bg - Microservices
 
Cloud Conf Varna: Vagrant and Amazon
Cloud Conf Varna: Vagrant and AmazonCloud Conf Varna: Vagrant and Amazon
Cloud Conf Varna: Vagrant and Amazon
 
HackConf2015 - Ruby on Rails: Unexpected journey
HackConf2015 - Ruby on Rails: Unexpected journeyHackConf2015 - Ruby on Rails: Unexpected journey
HackConf2015 - Ruby on Rails: Unexpected journey
 
Lighting talks - Microservices
Lighting talks - MicroservicesLighting talks - Microservices
Lighting talks - Microservices
 

Último

Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Último (20)

Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 

VFU SEM - PHP OOP [12.10.2013]

  • 2. PHP : Intro Dimitar Danailov Senior Developer at 158ltd.com dimityr.danailov[at]gmail.com Github Slide Share Founder at VarnaIT Senior Developer at 158ltd.com
  • 3. Topics Today ● ● ● ● ● ● Object-oriented programming Overview Objects & Classes Abstraction and encapsulation Inheritance Polymorphism Class Diagrams
  • 4. OOP Object-oriented programming (OOP) is a programming paradigm that represents concepts as "objects" that have data fields (attributes that describe the object) and associated procedures known as methods. Objects, which are usually instances of classes, are used to interact with one another to design applications and computer programs. C++, Objective-C, Smalltalk, Java and C# are examples of object-oriented programming languages.
  • 5. OOP (2) ● ● ● ● Objects & Classes Abstraction and encapsulation Inheritance Polymorphism
  • 7. What is an object Objects are the elements through which we perceive the world around us. All objects have these characteristics : ● Identity ● State ● Behaviour
  • 8. <?php //Objects $human = new stdClass(); $human->gender = 'm'; $human->age = 35; $human->name = 'Todor Dimov'; $child1 = new stdClass(); $child1->name = 'Dimo Todorov'; $child2 = new stdClass(); $child2->name = 'Todorka Todorova'; $human->childrens = array($child1, $child2); var_dump($human); ?>
  • 9. Classes (classification of objects) A class is a group of objects with same attributes and behavior. The characteristics of a class are : ● A name ● Attributes ● Methods / Functions
  • 10. <?php /* Classes */ class Human { private $name = null; private $gender = null; private $age = null; private $childrens = array(); public function __construct($name, $gender, $age, $childrens = array()) { $this->name = $name; $this->gender = $gender; $this->age = $age; $this->childrens = $childrens; } } /* … */ ?>
  • 11. <?php /* ... */ $child1 = new Human('Dimo Todorov', 'm', 12); $child2 = new Human('Todorka Todorova', 'f', 16); $childrens = array($child1, $child2); $human = new Human('Todor Dimov', 'm', 35, $childrens); var_dump($human); ?>
  • 13. Abstraction In computer science, abstraction is the process by which data and programs are defined with a representation similar in form to its meaning (semantics), while hiding away the implementation details. Abstraction tries to reduce and factor out details so that the programmer can focus on a few concepts at a time. A system can have several abstraction layers whereby different meanings and amounts of detail are exposed to the programmer.
  • 14. Encapsulation Encapsulation is the practice of including in an object everything it needs hidden from the other objects in the system.
  • 16. Inheritance In object-oriented programming (OOP), inheritance is a way to establish Is-a relationships between objects. In classical inheritance where objects are defined by classes, classes can inherit attributes and behavior from pre-existing classes called base classes, superclasses, or parent classes.
  • 17. // Inheritance class Human { private $name = null; private $gender = null; private $age = null; public function __construct($name, $gender, $age) { $this->name = $name; $this->gender = $gender; $this->age = $age; } static function prinHello($name) { echo 'Hello, ' . $name; } private function greetings() { echo 'Greetings'; } }
  • 18. class ParentClass extends Human { private $name = null; private $gender = null; private $age = null; private $childrens = array(); public function __construct ($name, $gender, $age) { $this->name = $name; $this->gender = $gender; $this->age = $age; } public function getName() { //$this->greetings(); return parent::prinHello($this->name); } public function getChildrens () { return $this->childrens; } public function setChildren (Child $child) { $this->childrens[] = $child; } }
  • 19. Class Child extends Human { private $parents = array(); public function __construct($name, $gender, $age) { $this->name = $name; $this->gender = $gender; $this->age = $age; } public function getParents() { return $this->parents; } public function setParent(ParentClass $parent) { $this->parents[] = $parent; } }
  • 21. Polymorphism Polymorphism describes a pattern in object oriented programming in which classes have different functionality while sharing a common interface.
  • 23. Class Abstraction PHP 5 introduces abstract classes and methods. Classes defined as abstract may not be instantiated, and any class that contains at least one abstract method must also be abstract. Methods defined as abstract simply declare the method's signature - they cannot define the implementation.
  • 24. <?php abstract class AbstractHuman { private $name = null; private $gender = null; private $age = null; public function __construct ($name, $gender, $age) { $this->name = $name; $this->gender = $gender; $this->age = $age; } abstract public function getName(); abstract public function setName($name); abstract public function getGender (); abstract public function setGender ($gender); abstract public function getAge(); abstract public function setAge($age); } ?>
  • 25. <?php class ParentClass extends AbstractHuman { public function getName() { return $this->name; } public function setName($name) { $this->name = $name; } public function getGender () { return $this->gender; } public function setGender ($gender) { $this->gender = $gender; } // ... } ?>
  • 27. Object Interfaces Object interfaces allow you to create code which specifies which methods a class must implement, without having to define how these methods are handled. Interfaces are defined using the interface keyword, in the same way as a standard class, but without any of the methods having their contents defined. All methods declared in an interface must be public, this is the nature of an interface.
  • 28. <?php // Interfaces interface iHuman { public function getName(); public function setName($name); public function getGender(); public function setGender($gender); public function getAge(); public function setAge($age); } ?>
  • 29. <?php class ParentClass implements iHuman { public function getName() { return $this->name; } public function setName($name) { $this->name = $name; } public function getGender() { return $this->gender; } public function setGender($gender) { $this->gender = $gender; } // ... } ?>
  • 31. Questions ? Dimitar Danailov Senior Developer at 158ltd.com dimityr.danailov[at]gmail.com Github Slide Share Founder at VarnaIT Senior Developer at 158ltd.com