SlideShare a Scribd company logo
Object Oriented PHPJason Perry
What is it?A way of programming in PHP
Objects in PHP can’t be declared literallyAn instance must be created from a class. class myClass{var $attribute1;var $attribute2;  function method1()  {    // Code here    return $something;  }  function method2()  {    // Code here  }}$myObject = new myClass();
What can it do?Organizes variables, functions, and informationShorten code to improve readabilityAdd in an additional layer of functionality
Essentially creates a new variableUser definedCan create as many of this type as desiredCan access any attribute or method of the objectAllows the creation of constructors which execute upon instantiation. $myObject2 = new myClass();$myObject3 = new myClass();$myObject4 = new myClass();// Attributes$myObject->attribute1 = ‘X';$myObject->attribute2 = ‘Y';// Methods$returned = $myObject->method1();$myObject->method2();
Why use it?Increases ease of organizing longer projectsRe-use of classes and variablesCuts back on repetitious typing of codeBetter organization of codeSpeeds up writing processEasier Maintenance
Citationshttp://nefariousdesigns.co.uk/archive/2006/08/object-oriented-php-part-1-definition/http://webitect.net/development/phpmysql/object-oriented-php-the-basics/http://net.tutsplus.com/tutorials/php/object-oriented-php-for-beginners/

More Related Content

What's hot (19)

PPTX
Functions and Objects in JavaScript
Dhananjay Kumar
 
PPTX
Java script basic
Ravi Bhadauria
 
PDF
Advanced Interfaces and Repositories in Laravel
Jonathan Behr
 
PPTX
JavaScript: The Good Parts Or: How A C# Developer Learned To Stop Worrying An...
Doug Jones
 
PDF
Variables, expressions, standard types
Rubizza
 
PDF
A Gentle Introduction To Object Oriented Php
Michael Girouard
 
PPTX
JavaScript Literacy
David Jacobs
 
PPT
Meta programming
antho1404
 
PDF
JavaScript - Chapter 8 - Objects
WebStackAcademy
 
PDF
Dependency injection in CakePHP
markstory
 
PPT
PHP- Introduction to Object Oriented PHP
Vibrant Technologies & Computers
 
PPT
Convention Generator - Yi’s Eclipse Monkey Scripts for Coding ActionScript in...
Yi Tan
 
PPTX
Ruby Metaprogramming
Thaichor Seng
 
PDF
Dci in PHP
Herman Peeren
 
PDF
Demystifying Object-Oriented Programming - Lone Star PHP
Alena Holligan
 
PDF
Demystifying Object-Oriented Programming - Midwest PHP
Alena Holligan
 
PPT
JavaScript Tutorial
Bui Kiet
 
PPT
PHP - Introduction to Object Oriented Programming with PHP
Vibrant Technologies & Computers
 
PPT
Oops concepts in php
CPD INDIA
 
Functions and Objects in JavaScript
Dhananjay Kumar
 
Java script basic
Ravi Bhadauria
 
Advanced Interfaces and Repositories in Laravel
Jonathan Behr
 
JavaScript: The Good Parts Or: How A C# Developer Learned To Stop Worrying An...
Doug Jones
 
Variables, expressions, standard types
Rubizza
 
A Gentle Introduction To Object Oriented Php
Michael Girouard
 
JavaScript Literacy
David Jacobs
 
Meta programming
antho1404
 
JavaScript - Chapter 8 - Objects
WebStackAcademy
 
Dependency injection in CakePHP
markstory
 
PHP- Introduction to Object Oriented PHP
Vibrant Technologies & Computers
 
Convention Generator - Yi’s Eclipse Monkey Scripts for Coding ActionScript in...
Yi Tan
 
Ruby Metaprogramming
Thaichor Seng
 
Dci in PHP
Herman Peeren
 
Demystifying Object-Oriented Programming - Lone Star PHP
Alena Holligan
 
Demystifying Object-Oriented Programming - Midwest PHP
Alena Holligan
 
JavaScript Tutorial
Bui Kiet
 
PHP - Introduction to Object Oriented Programming with PHP
Vibrant Technologies & Computers
 
Oops concepts in php
CPD INDIA
 

Viewers also liked (7)

PPT
La publicidad en 140 carácteres. Diccionario de publicidad.
Sheila Losada
 
PPT
Homenatge Dolors Thomas
Entesa Per Cubelles Cubelles
 
PPT
Why i like blogging most
mrslgresham
 
PPT
Reading Timetables
janmforman
 
PPT
Why i like blogging most
mrslgresham
 
PPT
R U N A L L A T E S T
Subodh Lapsiwala
 
PPT
πρόταση καταγραφής & αξιοποίησης των ακινήτων του δημοσίου
vkazoukas
 
La publicidad en 140 carácteres. Diccionario de publicidad.
Sheila Losada
 
Homenatge Dolors Thomas
Entesa Per Cubelles Cubelles
 
Why i like blogging most
mrslgresham
 
Reading Timetables
janmforman
 
Why i like blogging most
mrslgresham
 
R U N A L L A T E S T
Subodh Lapsiwala
 
πρόταση καταγραφής & αξιοποίησης των ακινήτων του δημοσίου
vkazoukas
 
Ad

Similar to Object oriented php (20)

ODP
Beginners Guide to Object Orientation in PHP
Rick Ogden
 
DOCX
Oops concept in php
selvabalaji k
 
ODP
(An Extended) Beginners Guide to Object Orientation in PHP
Rick Ogden
 
PDF
Object Oriented PHP - PART-1
Jalpesh Vasa
 
PDF
09 Object Oriented Programming in PHP #burningkeyboards
Denis Ristic
 
PDF
OOP in PHP
Tarek Mahmud Apu
 
PDF
OOP in PHP
Alena Holligan
 
PDF
Demystifying Object-Oriented Programming - PHP UK Conference 2017
Alena Holligan
 
PPTX
Lecture-10_PHP-OOP.pptx
ShaownRoy1
 
PPTX
Php oop (1)
Sudip Simkhada
 
PPT
Synapseindia object oriented programming in php
Synapseindiappsdevelopment
 
PPTX
OOP Day 2
Brian Fenton
 
PPTX
Oop in-php
Rajesh S
 
PDF
Object_oriented_programming_OOP_with_PHP.pdf
GammingWorld2
 
PPTX
c91632a4-2e92-4edf-b750-358da15ed1b1.pptx
ajayparmeshwarmahaja
 
PPT
Oop in php lecture 2
Mudasir Syed
 
PPTX
UNIT III (8).pptx
DrDhivyaaCRAssistant
 
PPTX
UNIT III (8).pptx
DrDhivyaaCRAssistant
 
PPTX
Object Oriented PHP by Dr.C.R.Dhivyaa Kongu Engineering College
Dhivyaa C.R
 
PDF
Demystifying Object-Oriented Programming #ssphp16
Alena Holligan
 
Beginners Guide to Object Orientation in PHP
Rick Ogden
 
Oops concept in php
selvabalaji k
 
(An Extended) Beginners Guide to Object Orientation in PHP
Rick Ogden
 
Object Oriented PHP - PART-1
Jalpesh Vasa
 
09 Object Oriented Programming in PHP #burningkeyboards
Denis Ristic
 
OOP in PHP
Tarek Mahmud Apu
 
OOP in PHP
Alena Holligan
 
Demystifying Object-Oriented Programming - PHP UK Conference 2017
Alena Holligan
 
Lecture-10_PHP-OOP.pptx
ShaownRoy1
 
Php oop (1)
Sudip Simkhada
 
Synapseindia object oriented programming in php
Synapseindiappsdevelopment
 
OOP Day 2
Brian Fenton
 
Oop in-php
Rajesh S
 
Object_oriented_programming_OOP_with_PHP.pdf
GammingWorld2
 
c91632a4-2e92-4edf-b750-358da15ed1b1.pptx
ajayparmeshwarmahaja
 
Oop in php lecture 2
Mudasir Syed
 
UNIT III (8).pptx
DrDhivyaaCRAssistant
 
UNIT III (8).pptx
DrDhivyaaCRAssistant
 
Object Oriented PHP by Dr.C.R.Dhivyaa Kongu Engineering College
Dhivyaa C.R
 
Demystifying Object-Oriented Programming #ssphp16
Alena Holligan
 
Ad

Object oriented php