SlideShare ist ein Scribd-Unternehmen logo
1 von 31
Downloaden Sie, um offline zu lesen
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

Weitere ähnliche Inhalte

Mehr von Dimitar Danailov

Mehr von 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
 

Kürzlich hochgeladen

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 

Kürzlich hochgeladen (20)

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
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
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...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
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
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
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
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 

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