SlideShare a Scribd company logo
1 of 82
Download to read offline
Enterprise PHP Development

                 Ivo Jansch - ivo@ibuildings.com


                        php|works 2008

Enterprise PHP
What’s an Enterprise?
            “Any of several ships by that name
          in the Star Trek universe” – Wikipedia




Enterprise PHP
What’s an Enterprise?
            “Any of several ships by that name
          in the Star Trek universe” – Wikipedia




Enterprise PHP
What’s an Enterprise?
             “Any of several ships by that name
           in the Star Trek universe” – Wikipedia




“A business, company or comparable organization”
 Enterprise PHP
PHP usage is changing




Enterprise PHP
PHP usage is changing
•    1998
      •    Personal stuff




    Enterprise PHP
PHP usage is changing
•    1998
      •    Personal stuff

•    2003
      •    Simple websites
      •    Content management
      •    Blogs




    Enterprise PHP
PHP usage is changing
•    1998
      •    Personal stuff

•    2003
      •    Simple websites
      •    Content management
      •    Blogs

•    2008
      •    Big websites
      •    Banks
      •    Insurance Companies

    Enterprise PHP
PHP’s Quest so far

                             Enterprise



                                     SME


                                           SOHO



Enterprise PHP
Is PHP ‘enterprise ready’?




Enterprise PHP
Is PHP ‘enterprise ready’?




 Big                           Small
 Enterprise friendly           Lightweight

 enterpriCe                    Inexpensive

 CS required                   Easy to learn




    Enterprise PHP
A word from my girlfriend


            It's not the   SIZE of the tool...

                 It's how you USE it.




Enterprise PHP
Traditional PHP metaphor

                 PHP is like LEGO bricks




Enterprise PHP
Improved metaphor
                       PHP is no longer a toy
                 Let’s use the metaphor of actual bricks




Enterprise PHP
About Bricks


•    Extreme Simplicity
•    Easy to learn
•    Versatile
•    Inexpensive




    Enterprise PHP
Enterprise Development
                 In 10 steps




Enterprise PHP
Step 1 – The Team
     “I have read about your plans to build a new
         skyscraper and I am applying for a job.

I have a lot of experience with Bricks. I taught myself
   how to use them and have been maintaining our
           family shed for a few years now.”




 Enterprise PHP
Step 1 – The Team
• Be a Software Engineer
• Train your skills
• Study OO principles
• Consider Zend Certification



 Enterprise PHP
Step 2 - Requirements
• What does the customer want?
• What will visitors want?
• What does the customer really need?




 Enterprise PHP
Step 2 - Requirements
Functional Design
  •   Requirements Definition
  •   Interaction Design / Wireframes
  •   Flow Diagrams
  •   Tip: Axure




 Enterprise PHP
Step 3 - Architecture




Enterprise PHP
Step 3 - Architecture
Don’t just start stacking bricks




  Enterprise PHP
Step 3 - Architecture
Don’t just start stacking bricks




                             Create an architecture first

  Enterprise PHP
Step 3 - Architecture
Technical Design
  •   Modeling
      • Class Diagrams
      • ER Diagrams (data model)
      • Collaboration Diagrams
      • Use Cases etc.
  •   Tools:
      • UML
      • Whiteboards



  Enterprise PHP
Step 3 - Architecture
High Level Architectures:

   •   MVC (Model, View, Controller)
   •   SOA (Service Oriented Architecture)
   •   Multi-tier development (Frontend, Application, BL, Data)
   •   CBD (Component Based Development)




  Enterprise PHP
Step 4 - Tools




Enterprise PHP
Step 4 - Tools
You don’t need tools…




  Enterprise PHP
Step 4 - Tools
You don’t need tools…



                        But they make you productive




  Enterprise PHP
Step 4 - Tools
Development:
   •   Eclipse PDT
   •   Zend Studio
   •   PhpEd
   •   Vim
   •   Komodo

IDE’s versus Editors
   •   Debugging & Profiling
   •   Syntax Check
   •   Cross-Referencing / Navigation

  Enterprise PHP
Step 4 - Tools
Development:
   •   Eclipse PDT
   •   Zend Studio
   •   PhpEd
   •   Vim
   •   Komodo

IDE’s versus Editors
   •   Debugging & Profiling
   •   Syntax Check
   •   Cross-Referencing / Navigation

  Enterprise PHP
Step 4 - Tools




Enterprise PHP
Step 4 - Tools
Source Control
  •   CVS / SVN / MS VSS
  •   Bitkeeper / GIT




 Enterprise PHP
Step 4 - Tools
Source Control
  •   CVS / SVN / MS VSS
  •   Bitkeeper / GIT




Documentation
  •   phpDocumentor
       http://phpdoc.org

  •   PHPXRef

   
        http://phpxref.sourceforge.net

  •   Wiki
   
   
        http://en.wikipedia.org/wiki/List_of_wiki_software




 Enterprise PHP
Step 5 - Foundation




Enterprise PHP
Step 5 - Foundation
Start stacking bricks?
   •   How many bricks does it take?
   •   What about stability?




  Enterprise PHP
Step 5 - Foundation
Start stacking bricks?
   •   How many bricks does it take?
   •   What about stability?




                                   Start with a foundation


  Enterprise PHP
Step 5 - Foundation
Use a framework
  •   Provides guidelines (frame)
  •   Off the shelf components

Examples
  •   Zend Framework – http://framework.zend.com
  •   ezComponents – http://ez.no/ezcomponents
  •   Symfony – http://www.symfony-project.org
  •   ATK – http://www.atk-framework.com




 Enterprise PHP
Step 5 - Foundation
The “Not Invented Here” Syndrome:


  •   “The existing frameworks are no good.
      
 
 I can do this better.”
  •   “This framework is no good.
      
 
 It can do A through Y but I need Z.”
  •   “This framework is too big.
      
 
 It provides A-Z but we only need A and B.”
  •   “I know there's a good framework.
      
 
 But I would like to learn.”



 Enterprise PHP
Step 6 - Design Patterns

                     Requirement 1056.4:

           We need to be able to look outside,
           but we can't make holes in the wall
             (rain should be kept outside).

                 When it's sunny, a hole is ok.


Enterprise PHP
Step 6 - Design Patterns




Enterprise PHP
Step 6 - Design Patterns
• A ‘window’ is a concept
  •   Best practice way of solving a particular problem




 Enterprise PHP
Step 6 - Design Patterns
• A ‘window’ is a concept
  •   Best practice way of solving a particular problem

• In IT, we call this a ‘design pattern’




 Enterprise PHP
Step 6 - Design Patterns
• A ‘window’ is a concept
  •   Best practice way of solving a particular problem

• In IT, we call this a ‘design pattern’
• Popular patterns in PHP:
  •   MVC, Factory, Singleton, Registry, Decorator




 Enterprise PHP
Step 6 - Design Patterns
• A ‘window’ is a concept
  •   Best practice way of solving a particular problem

• In IT, we call this a ‘design pattern’
• Popular patterns in PHP:
  •   MVC, Factory, Singleton, Registry, Decorator

• Good read:
  •   php|architect's Guide to PHP Design Patterns
      
- Jason E. Sweat



 Enterprise PHP
Step 7 - Testing




  Is your software tested after it has gone live?
Enterprise PHP
Step 7 - Testing
Various types of testing:
   •   Developer testing
   •   Functional testing
   •   Environment testing
   •   Performance testing
   •   Usability testing




  Enterprise PHP
Step 7 - Testing
                 A common scenario…




Enterprise PHP
Step 7 - Testing
                   The user complains…




                 MWOEHA!
                  BUG!




Enterprise PHP
Step 7 - Testing
             Developer attacks the problem…




                 fix_bug();




Enterprise PHP
Step 7 - Testing
                   Problem Solved!




Enterprise PHP
Step 7 - Testing




Enterprise PHP
Step 7 - Testing
• Solution: Unit Tests
   •    Automated testing after each change
   •    Prevents regressions




  Enterprise PHP
Step 7 - Testing
• Solution: Unit Tests
   •    Automated testing after each change
   •    Prevents regressions

• Testing for PHP applications:
   •    PHPUnit

 
 
 
     http://www.phpunit.de/ 

   •    SimpleTest
 
 
 
   http://www.lastcraft.com/simple_test.php




  Enterprise PHP
Step 7 - Testing
• Solution: Unit Tests
   •    Automated testing after each change
   •    Prevents regressions

• Testing for PHP applications:
   •    PHPUnit

 
 
 
     http://www.phpunit.de/ 

   •    SimpleTest
 
 
 
   http://www.lastcraft.com/simple_test.php


• Continuous Integration:
   •CruiseControl

 
       http://cruisecontrol.sourceforge.net/

   •    phpUnderControl
    http://www.phpundercontrol.org/




  Enterprise PHP
Step 7 - Testing
• Test Driven Development
  1. Define functionality
  2. Create testcase
  3. Run test => test fails
  4. Implement functionality
     •   Test succeeds? Done
     •   Test fails? Refactor

  Repeat step 4 until finished




 Enterprise PHP
Step 8 - Optimization

                 Users are reporting:


        quot;I work on the 197th floor. Every day I
       have to walk the stairs for 2 hours, then I
         have only 4 hours left to do my job.quot;




Enterprise PHP
Step 8 - Optimization
                  Solution: Elevator




Enterprise PHP
Step 8 - Optimization




Enterprise PHP
Step 8 - Optimization
In PHP, this ‘elevator’ is called an ‘accelerator’




  Enterprise PHP
Step 8 - Optimization
In PHP, this ‘elevator’ is called an ‘accelerator’

   •   This is how PHP works (pseudo-ish code):
       read index.php;           // enter the building
       compile index.php;         // go to floor 197
       echo “Hello World”;        // get the job done




  Enterprise PHP
Step 8 - Optimization
In PHP, this ‘elevator’ is called an ‘accelerator’

   •   This is how PHP works (pseudo-ish code):
       read index.php;            // enter the building
       compile index.php;          // go to floor 197
       echo “Hello World”;         // get the job done


   •   An accelerator improves the first 2 steps




  Enterprise PHP
Step 8 - Optimization
In PHP, this ‘elevator’ is called an ‘accelerator’

   •   This is how PHP works (pseudo-ish code):
       read index.php;                  // enter the building
       compile index.php;                // go to floor 197
       echo “Hello World”;               // get the job done


   •   An accelerator improves the first 2 steps


   •   Accelerators for PHP:
       •   APC

 
 
 
       http://pecl.php.net/package/APC
       •   eAccelerator
 
   http://eaccelerator.net/
       •   Zend Platform

   http://www.zend.com/products/zend_platform


  Enterprise PHP
Step 8 - Optimization

                    Users complain:


          “Every time I want coffee I have to go
              to the top floor to get some.”




Enterprise PHP
Step 8 - Optimization




Enterprise PHP
Step 8 - Optimization
• Solution:
  •    Create small coffee corners on every floor so people don’t
       have to go to the main restaurant every time.




 Enterprise PHP
Step 8 - Optimization
• Solution:
   •    Create small coffee corners on every floor so people don’t
        have to go to the main restaurant every time.

• In PHP we call this caching
   •    Don’t query the database everytime you need data
   •    Use locally stored copy (file or memory)




  Enterprise PHP
Step 8 - Optimization
• Solution:
   •    Create small coffee corners on every floor so people don’t
        have to go to the main restaurant every time.

• In PHP we call this caching
   •    Don’t query the database everytime you need data
   •    Use locally stored copy (file or memory)

• PHP Caching solutions:
   •Zend_Cache
 
          http://framework.zend.com

   •    Zend Platform
 
   http://www.zend.com/products/zend_platform

   •    Memcached
 
 
     http://danga.com/memcached/



  Enterprise PHP
Step 9 - Deployment
•    Lifecycle:
     •    Develop
     •    Test
     •    Deploy to staging environment
     •    Deploy to live


•    Use SVN
•    Code is just a part, don't forget the database
•    Create a 'Deployment & Release Profile'

    Enterprise PHP
Step 9 - Deployment
                    System Architecture


                       PHP
                                 MySQL
                     Apache
                             Linux


    From a simple single machine LAMP stack…
Enterprise PHP
Step 9 - Deployment




   … to a High Availability, Scalable Architecture
Enterprise PHP
Step 10 - Operations

Monitoring:


  •   Logfiles
  •   Monitor infrastructure (tools such as Nagios)
  •   Monitor application (tools such as Zend Platform)
  •   Monitor business (is the money still pouring in?)




 Enterprise PHP
Step 10 - Operations
Debugging

  •   Ideal:

      “I had error x when I selected y after I clicked z”

  •   Reality:

      “It doesn't work!”
      “What exactly doesn't work, and what did you do?”
      “It just ******** didn't work, FIX IT.”



 Enterprise PHP
Step 10 - Operations

Solutions:
   •   A ‘root cause’
       analysis tool
   •   Logging
   •   Context Capture




  Enterprise PHP
Step 10 - Operations

Change management:


  •   Ticket system
  •   Stick to your deployment - use the DRP
  •   DON'T TOUCH THE LIVE ENVIRONMENT. EVAH!




 Enterprise PHP
The Big Picture
                   (We’re almost done)




Enterprise PHP
The Big Picture




Enterprise PHP
The Big Picture
• No ‘cowboy coding’, but structured steps
  •   Higher quality
  •   Software will be easier to maintain (and cheaper)




 Enterprise PHP
The Big Picture
• No ‘cowboy coding’, but structured steps
  •   Higher quality
  •   Software will be easier to maintain (and cheaper)

• Development methodology
  •   Waterfall
  •   Agile (DSDM, XP, Scrum)




 Enterprise PHP
The Big Picture
• No ‘cowboy coding’, but structured steps
  •   Higher quality
  •   Software will be easier to maintain (and cheaper)

• Development methodology
  •   Waterfall
  •   Agile (DSDM, XP, Scrum)

• Software Development Life Cycle (SDLC)
  •   Adapt from existing methods, learn from experts
  •   Document it properly
  •   Make it the cornerstone of your development efforts

 Enterprise PHP
More things to think about

• Planning
• Coding
• Implementation
• Security


 Enterprise PHP
Shameless Plug
Book about this all:
   •   php|architect’s Guide to
       Enterprise PHP Development
   •   ISBN: 978-0-9738621-8-8
   •   Order at phparch.com
       or amazon.com
   •   http://www.enterprisephp.nl




  Enterprise PHP
Questions?
                    ivo@ibuildings.com
                 http://www.ibuildings.com
                    http://www.jansch.nl
                 http://joind.in/talk/view/65
Enterprise PHP

More Related Content

What's hot

Encouraging Agile Discipline
Encouraging Agile DisciplineEncouraging Agile Discipline
Encouraging Agile DisciplinePatchSpace Ltd
 
What if-your-application-could-speak
What if-your-application-could-speakWhat if-your-application-could-speak
What if-your-application-could-speakMarcos Vinícius
 
Thinkful FrontEnd Crash Course - HTML & CSS
Thinkful FrontEnd Crash Course - HTML & CSSThinkful FrontEnd Crash Course - HTML & CSS
Thinkful FrontEnd Crash Course - HTML & CSSTJ Stalcup
 
Jared Whitlock Open Source In The Enterprise Plone @ Novell
Jared Whitlock   Open Source In The Enterprise    Plone @ NovellJared Whitlock   Open Source In The Enterprise    Plone @ Novell
Jared Whitlock Open Source In The Enterprise Plone @ NovellVincenzo Barone
 
Full-Stack Development
Full-Stack DevelopmentFull-Stack Development
Full-Stack DevelopmentDhilipsiva DS
 
Why are preprocessors divisive
Why are preprocessors divisiveWhy are preprocessors divisive
Why are preprocessors divisiveKianosh Pourian
 
What is a Full stack developer? - Tech talk
What is a Full stack developer? - Tech talk What is a Full stack developer? - Tech talk
What is a Full stack developer? - Tech talk Bui Hai An
 
How to become a Zend Certified PHP Engineer
How to become a Zend Certified PHP EngineerHow to become a Zend Certified PHP Engineer
How to become a Zend Certified PHP EngineerTuyen Vuong
 
How to do Scalable UI-Heavy Development at a Breakneck Pace
How to do Scalable UI-Heavy Development at a Breakneck PaceHow to do Scalable UI-Heavy Development at a Breakneck Pace
How to do Scalable UI-Heavy Development at a Breakneck PaceSV Ruby on Rails Meetup
 
Ahmad ibrahem alsharaira CV
Ahmad ibrahem alsharaira CVAhmad ibrahem alsharaira CV
Ahmad ibrahem alsharaira CVAhmad Sharairi
 

What's hot (17)

Encouraging Agile Discipline
Encouraging Agile DisciplineEncouraging Agile Discipline
Encouraging Agile Discipline
 
What if-your-application-could-speak
What if-your-application-could-speakWhat if-your-application-could-speak
What if-your-application-could-speak
 
Thinkful FrontEnd Crash Course - HTML & CSS
Thinkful FrontEnd Crash Course - HTML & CSSThinkful FrontEnd Crash Course - HTML & CSS
Thinkful FrontEnd Crash Course - HTML & CSS
 
Tf byows
Tf byowsTf byows
Tf byows
 
HTML5 for the Ruby Developer
HTML5 for the Ruby DeveloperHTML5 for the Ruby Developer
HTML5 for the Ruby Developer
 
Jared Whitlock Open Source In The Enterprise Plone @ Novell
Jared Whitlock   Open Source In The Enterprise    Plone @ NovellJared Whitlock   Open Source In The Enterprise    Plone @ Novell
Jared Whitlock Open Source In The Enterprise Plone @ Novell
 
Full-Stack Development
Full-Stack DevelopmentFull-Stack Development
Full-Stack Development
 
Why are preprocessors divisive
Why are preprocessors divisiveWhy are preprocessors divisive
Why are preprocessors divisive
 
Event4 better javascript
Event4   better javascriptEvent4   better javascript
Event4 better javascript
 
Frontend Crash Course
Frontend Crash CourseFrontend Crash Course
Frontend Crash Course
 
What is a Full stack developer? - Tech talk
What is a Full stack developer? - Tech talk What is a Full stack developer? - Tech talk
What is a Full stack developer? - Tech talk
 
Tf byows
Tf byowsTf byows
Tf byows
 
How to become a Zend Certified PHP Engineer
How to become a Zend Certified PHP EngineerHow to become a Zend Certified PHP Engineer
How to become a Zend Certified PHP Engineer
 
How to do Scalable UI-Heavy Development at a Breakneck Pace
How to do Scalable UI-Heavy Development at a Breakneck PaceHow to do Scalable UI-Heavy Development at a Breakneck Pace
How to do Scalable UI-Heavy Development at a Breakneck Pace
 
Tf byow
Tf byowTf byow
Tf byow
 
Tf byow
Tf byowTf byow
Tf byow
 
Ahmad ibrahem alsharaira CV
Ahmad ibrahem alsharaira CVAhmad ibrahem alsharaira CV
Ahmad ibrahem alsharaira CV
 

Viewers also liked

Enterprise PHP (PHP London Conference 2008)
Enterprise PHP (PHP London Conference 2008)Enterprise PHP (PHP London Conference 2008)
Enterprise PHP (PHP London Conference 2008)Ivo Jansch
 
Introduction to web and php mysql
Introduction to web and php mysqlIntroduction to web and php mysql
Introduction to web and php mysqlProgrammer Blog
 
Magento eCommerce And The Next Generation Of PHP
Magento eCommerce And The Next Generation Of PHPMagento eCommerce And The Next Generation Of PHP
Magento eCommerce And The Next Generation Of PHPvarien
 
[Php] navigations
[Php] navigations[Php] navigations
[Php] navigationsThai Pham
 
Php my sql - functions - arrays - tutorial - programmerblog.net
Php my sql - functions - arrays - tutorial - programmerblog.netPhp my sql - functions - arrays - tutorial - programmerblog.net
Php my sql - functions - arrays - tutorial - programmerblog.netProgrammer Blog
 
Chapter 10 Synchronous Communication
Chapter 10 Synchronous CommunicationChapter 10 Synchronous Communication
Chapter 10 Synchronous CommunicationPatty Ramsey
 
LiDAR Aided Decision Making
LiDAR Aided Decision MakingLiDAR Aided Decision Making
LiDAR Aided Decision MakingLidar Blog
 
Chapter 4 Form Factors Power Supplies
Chapter 4 Form Factors Power SuppliesChapter 4 Form Factors Power Supplies
Chapter 4 Form Factors Power SuppliesPatty Ramsey
 
Chapter 1Into the Internet
Chapter 1Into the InternetChapter 1Into the Internet
Chapter 1Into the InternetPatty Ramsey
 
Ch3(working with file)
Ch3(working with file)Ch3(working with file)
Ch3(working with file)Chhom Karath
 
eMail 101 (2) Class for Selfhelp Virtual Senior Center
eMail 101 (2) Class for Selfhelp Virtual Senior CentereMail 101 (2) Class for Selfhelp Virtual Senior Center
eMail 101 (2) Class for Selfhelp Virtual Senior CenterSnowSugar Video
 
Ch5(ms access with php)
Ch5(ms access with php)Ch5(ms access with php)
Ch5(ms access with php)Chhom Karath
 
Appendex g
Appendex gAppendex g
Appendex gswavicky
 
Setting up a gmail account
Setting up a gmail accountSetting up a gmail account
Setting up a gmail accountkeelyswitzer
 
PHP - Introduction to PHP - Mazenet Solution
PHP - Introduction to PHP - Mazenet SolutionPHP - Introduction to PHP - Mazenet Solution
PHP - Introduction to PHP - Mazenet SolutionMazenetsolution
 
PHP 5.3 Part 1 - Introduction to PHP 5.3
PHP 5.3 Part 1 - Introduction to PHP 5.3PHP 5.3 Part 1 - Introduction to PHP 5.3
PHP 5.3 Part 1 - Introduction to PHP 5.3melechi
 

Viewers also liked (20)

Enterprise PHP (PHP London Conference 2008)
Enterprise PHP (PHP London Conference 2008)Enterprise PHP (PHP London Conference 2008)
Enterprise PHP (PHP London Conference 2008)
 
Introduction to web and php mysql
Introduction to web and php mysqlIntroduction to web and php mysql
Introduction to web and php mysql
 
Magento eCommerce And The Next Generation Of PHP
Magento eCommerce And The Next Generation Of PHPMagento eCommerce And The Next Generation Of PHP
Magento eCommerce And The Next Generation Of PHP
 
[Php] navigations
[Php] navigations[Php] navigations
[Php] navigations
 
Php my sql - functions - arrays - tutorial - programmerblog.net
Php my sql - functions - arrays - tutorial - programmerblog.netPhp my sql - functions - arrays - tutorial - programmerblog.net
Php my sql - functions - arrays - tutorial - programmerblog.net
 
Ch07
Ch07Ch07
Ch07
 
Chapter 10 Synchronous Communication
Chapter 10 Synchronous CommunicationChapter 10 Synchronous Communication
Chapter 10 Synchronous Communication
 
LiDAR Aided Decision Making
LiDAR Aided Decision MakingLiDAR Aided Decision Making
LiDAR Aided Decision Making
 
Chapter 4 Form Factors Power Supplies
Chapter 4 Form Factors Power SuppliesChapter 4 Form Factors Power Supplies
Chapter 4 Form Factors Power Supplies
 
Chapter 1Into the Internet
Chapter 1Into the InternetChapter 1Into the Internet
Chapter 1Into the Internet
 
Voice
VoiceVoice
Voice
 
Ch3(working with file)
Ch3(working with file)Ch3(working with file)
Ch3(working with file)
 
eMail 101 (2) Class for Selfhelp Virtual Senior Center
eMail 101 (2) Class for Selfhelp Virtual Senior CentereMail 101 (2) Class for Selfhelp Virtual Senior Center
eMail 101 (2) Class for Selfhelp Virtual Senior Center
 
Ch5(ms access with php)
Ch5(ms access with php)Ch5(ms access with php)
Ch5(ms access with php)
 
Appendex g
Appendex gAppendex g
Appendex g
 
Chapter 5 Input
Chapter 5 InputChapter 5 Input
Chapter 5 Input
 
Setting up a gmail account
Setting up a gmail accountSetting up a gmail account
Setting up a gmail account
 
PHP - Introduction to PHP - Mazenet Solution
PHP - Introduction to PHP - Mazenet SolutionPHP - Introduction to PHP - Mazenet Solution
PHP - Introduction to PHP - Mazenet Solution
 
PHP 5.3 Part 1 - Introduction to PHP 5.3
PHP 5.3 Part 1 - Introduction to PHP 5.3PHP 5.3 Part 1 - Introduction to PHP 5.3
PHP 5.3 Part 1 - Introduction to PHP 5.3
 
Intermediate PHP
Intermediate PHPIntermediate PHP
Intermediate PHP
 

Similar to Enterprise PHP (php|works 2008)

Enterprise PHP Development - ZendCon 2008
Enterprise PHP Development - ZendCon 2008Enterprise PHP Development - ZendCon 2008
Enterprise PHP Development - ZendCon 2008Ivo Jansch
 
Phpworks enterprise-php-1227605806710884-9
Phpworks enterprise-php-1227605806710884-9Phpworks enterprise-php-1227605806710884-9
Phpworks enterprise-php-1227605806710884-9PrinceGuru MS
 
Dynamic Languages In The Enterprise (4developers march 2009)
Dynamic Languages In The Enterprise (4developers march 2009)Dynamic Languages In The Enterprise (4developers march 2009)
Dynamic Languages In The Enterprise (4developers march 2009)Ivo Jansch
 
Professional PHP: an open-source alternative for enterprise development [Kort...
Professional PHP: an open-source alternative for enterprise development [Kort...Professional PHP: an open-source alternative for enterprise development [Kort...
Professional PHP: an open-source alternative for enterprise development [Kort...Combell NV
 
Advanced PHP: Design Patterns - Dennis-Jan Broerse
Advanced PHP: Design Patterns - Dennis-Jan BroerseAdvanced PHP: Design Patterns - Dennis-Jan Broerse
Advanced PHP: Design Patterns - Dennis-Jan Broersedpc
 
Enterprise PHP (Zend UK Business Conference)
Enterprise PHP (Zend UK Business Conference)Enterprise PHP (Zend UK Business Conference)
Enterprise PHP (Zend UK Business Conference)Ivo Jansch
 
The Power Of Refactoring (PHPNW)
The Power Of Refactoring (PHPNW)The Power Of Refactoring (PHPNW)
The Power Of Refactoring (PHPNW)Stefan Koopmanschap
 
Pyruvate, a reasonably fast, non-blocking, multithreaded WSGI server
Pyruvate, a reasonably fast, non-blocking, multithreaded WSGI serverPyruvate, a reasonably fast, non-blocking, multithreaded WSGI server
Pyruvate, a reasonably fast, non-blocking, multithreaded WSGI serverPloneFoundation
 
So gelingt der Umstieg von PHP4 auf PHP5: Erneuerung von Geschäftsanwendung...
So gelingt der Umstieg von PHP4 auf  PHP5: Erneuerung von  Geschäftsanwendung...So gelingt der Umstieg von PHP4 auf  PHP5: Erneuerung von  Geschäftsanwendung...
So gelingt der Umstieg von PHP4 auf PHP5: Erneuerung von Geschäftsanwendung...Lars Jankowfsky
 
Best Practices with Zend Framework - Matthew Weier O'Phinney
Best Practices with Zend Framework - Matthew Weier O'PhinneyBest Practices with Zend Framework - Matthew Weier O'Phinney
Best Practices with Zend Framework - Matthew Weier O'Phinneydpc
 
symfony: Simplify your professional web development with PHP (IPC Frankfurt 2...
symfony: Simplify your professional web development with PHP (IPC Frankfurt 2...symfony: Simplify your professional web development with PHP (IPC Frankfurt 2...
symfony: Simplify your professional web development with PHP (IPC Frankfurt 2...Fabien Potencier
 
PHP in the Real World
PHP in the Real WorldPHP in the Real World
PHP in the Real WorldIvo Jansch
 
Scripting Recipes for Testers
Scripting Recipes for TestersScripting Recipes for Testers
Scripting Recipes for TestersAdam Goucher
 
Introduction into PHP5 (Jeroen van Sluijs)
Introduction into PHP5 (Jeroen van Sluijs)Introduction into PHP5 (Jeroen van Sluijs)
Introduction into PHP5 (Jeroen van Sluijs)Stefan Koopmanschap
 
Theory and practice – migrating your legacy code into our modern test drive...
Theory and practice – migrating your  legacy code into our modern test  drive...Theory and practice – migrating your  legacy code into our modern test  drive...
Theory and practice – migrating your legacy code into our modern test drive...Lars Jankowfsky
 
symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)Fabien Potencier
 

Similar to Enterprise PHP (php|works 2008) (20)

Enterprise PHP Development - ZendCon 2008
Enterprise PHP Development - ZendCon 2008Enterprise PHP Development - ZendCon 2008
Enterprise PHP Development - ZendCon 2008
 
Phpworks enterprise-php-1227605806710884-9
Phpworks enterprise-php-1227605806710884-9Phpworks enterprise-php-1227605806710884-9
Phpworks enterprise-php-1227605806710884-9
 
Dynamic Languages In The Enterprise (4developers march 2009)
Dynamic Languages In The Enterprise (4developers march 2009)Dynamic Languages In The Enterprise (4developers march 2009)
Dynamic Languages In The Enterprise (4developers march 2009)
 
Professional PHP: an open-source alternative for enterprise development [Kort...
Professional PHP: an open-source alternative for enterprise development [Kort...Professional PHP: an open-source alternative for enterprise development [Kort...
Professional PHP: an open-source alternative for enterprise development [Kort...
 
Advanced PHP: Design Patterns - Dennis-Jan Broerse
Advanced PHP: Design Patterns - Dennis-Jan BroerseAdvanced PHP: Design Patterns - Dennis-Jan Broerse
Advanced PHP: Design Patterns - Dennis-Jan Broerse
 
Becoming A Php Ninja
Becoming A Php NinjaBecoming A Php Ninja
Becoming A Php Ninja
 
Enterprise PHP (Zend UK Business Conference)
Enterprise PHP (Zend UK Business Conference)Enterprise PHP (Zend UK Business Conference)
Enterprise PHP (Zend UK Business Conference)
 
Test
TestTest
Test
 
The Power Of Refactoring (PHPNW)
The Power Of Refactoring (PHPNW)The Power Of Refactoring (PHPNW)
The Power Of Refactoring (PHPNW)
 
The Power of Refactoring
The Power of RefactoringThe Power of Refactoring
The Power of Refactoring
 
Pyruvate, a reasonably fast, non-blocking, multithreaded WSGI server
Pyruvate, a reasonably fast, non-blocking, multithreaded WSGI serverPyruvate, a reasonably fast, non-blocking, multithreaded WSGI server
Pyruvate, a reasonably fast, non-blocking, multithreaded WSGI server
 
So gelingt der Umstieg von PHP4 auf PHP5: Erneuerung von Geschäftsanwendung...
So gelingt der Umstieg von PHP4 auf  PHP5: Erneuerung von  Geschäftsanwendung...So gelingt der Umstieg von PHP4 auf  PHP5: Erneuerung von  Geschäftsanwendung...
So gelingt der Umstieg von PHP4 auf PHP5: Erneuerung von Geschäftsanwendung...
 
Best Practices with Zend Framework - Matthew Weier O'Phinney
Best Practices with Zend Framework - Matthew Weier O'PhinneyBest Practices with Zend Framework - Matthew Weier O'Phinney
Best Practices with Zend Framework - Matthew Weier O'Phinney
 
symfony: Simplify your professional web development with PHP (IPC Frankfurt 2...
symfony: Simplify your professional web development with PHP (IPC Frankfurt 2...symfony: Simplify your professional web development with PHP (IPC Frankfurt 2...
symfony: Simplify your professional web development with PHP (IPC Frankfurt 2...
 
Symfony for non-techies
Symfony for non-techiesSymfony for non-techies
Symfony for non-techies
 
PHP in the Real World
PHP in the Real WorldPHP in the Real World
PHP in the Real World
 
Scripting Recipes for Testers
Scripting Recipes for TestersScripting Recipes for Testers
Scripting Recipes for Testers
 
Introduction into PHP5 (Jeroen van Sluijs)
Introduction into PHP5 (Jeroen van Sluijs)Introduction into PHP5 (Jeroen van Sluijs)
Introduction into PHP5 (Jeroen van Sluijs)
 
Theory and practice – migrating your legacy code into our modern test drive...
Theory and practice – migrating your  legacy code into our modern test  drive...Theory and practice – migrating your  legacy code into our modern test  drive...
Theory and practice – migrating your legacy code into our modern test drive...
 
symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
symfony: An Open-Source Framework for Professionals (Dutch Php Conference 2008)
 

More from Ivo Jansch

Own Your Apps
Own Your Apps Own Your Apps
Own Your Apps Ivo Jansch
 
PHP Development In The Cloud (php|tek edition)
PHP Development In The Cloud (php|tek edition)PHP Development In The Cloud (php|tek edition)
PHP Development In The Cloud (php|tek edition)Ivo Jansch
 
Mobile for PHP developers
Mobile for PHP developersMobile for PHP developers
Mobile for PHP developersIvo Jansch
 
Building an SSO platform in PHP (Zend Webinar Edition)
Building an SSO platform in PHP (Zend Webinar Edition)Building an SSO platform in PHP (Zend Webinar Edition)
Building an SSO platform in PHP (Zend Webinar Edition)Ivo Jansch
 
The Business Case For Telecommuting
The Business Case For TelecommutingThe Business Case For Telecommuting
The Business Case For TelecommutingIvo Jansch
 
Php Development In The Cloud
Php Development In The CloudPhp Development In The Cloud
Php Development In The CloudIvo Jansch
 
PHP in a mobile ecosystem
PHP in a mobile ecosystem PHP in a mobile ecosystem
PHP in a mobile ecosystem Ivo Jansch
 
27 Ways To Be A Better Developer (PHPBenelux 2011)
27 Ways To Be A Better Developer (PHPBenelux 2011)27 Ways To Be A Better Developer (PHPBenelux 2011)
27 Ways To Be A Better Developer (PHPBenelux 2011)Ivo Jansch
 
Building an SSO platform in php (Zendcon 2010)
Building an SSO platform in php (Zendcon 2010)Building an SSO platform in php (Zendcon 2010)
Building an SSO platform in php (Zendcon 2010)Ivo Jansch
 
PHP in a Mobile Ecosystem (Zendcon 2010)
PHP in a Mobile Ecosystem (Zendcon 2010)PHP in a Mobile Ecosystem (Zendcon 2010)
PHP in a Mobile Ecosystem (Zendcon 2010)Ivo Jansch
 
PHP and the Cloud (phpbenelux conference)
PHP and the Cloud (phpbenelux conference)PHP and the Cloud (phpbenelux conference)
PHP and the Cloud (phpbenelux conference)Ivo Jansch
 
Content Management Selection and Strategy
Content Management Selection and StrategyContent Management Selection and Strategy
Content Management Selection and StrategyIvo Jansch
 
PHP and the Cloud
PHP and the CloudPHP and the Cloud
PHP and the CloudIvo Jansch
 
Enterprise PHP Development (Dutch PHP Conference 2008)
Enterprise PHP Development (Dutch PHP Conference 2008)Enterprise PHP Development (Dutch PHP Conference 2008)
Enterprise PHP Development (Dutch PHP Conference 2008)Ivo Jansch
 
Hello Enterprise, my name is PHP
Hello Enterprise, my name is PHPHello Enterprise, my name is PHP
Hello Enterprise, my name is PHPIvo Jansch
 
Introduction to PHP (Casino Affiliate Convention 2008)
Introduction to PHP (Casino Affiliate Convention 2008)Introduction to PHP (Casino Affiliate Convention 2008)
Introduction to PHP (Casino Affiliate Convention 2008)Ivo Jansch
 
Maatwerk Software
Maatwerk SoftwareMaatwerk Software
Maatwerk SoftwareIvo Jansch
 
Introductie Web 2.0
Introductie Web 2.0Introductie Web 2.0
Introductie Web 2.0Ivo Jansch
 
Migrating from PHP4 To PHP5 - Zend Webinar
Migrating from PHP4 To PHP5 - Zend WebinarMigrating from PHP4 To PHP5 - Zend Webinar
Migrating from PHP4 To PHP5 - Zend WebinarIvo Jansch
 
Wat is Open Source?
Wat is Open Source?Wat is Open Source?
Wat is Open Source?Ivo Jansch
 

More from Ivo Jansch (20)

Own Your Apps
Own Your Apps Own Your Apps
Own Your Apps
 
PHP Development In The Cloud (php|tek edition)
PHP Development In The Cloud (php|tek edition)PHP Development In The Cloud (php|tek edition)
PHP Development In The Cloud (php|tek edition)
 
Mobile for PHP developers
Mobile for PHP developersMobile for PHP developers
Mobile for PHP developers
 
Building an SSO platform in PHP (Zend Webinar Edition)
Building an SSO platform in PHP (Zend Webinar Edition)Building an SSO platform in PHP (Zend Webinar Edition)
Building an SSO platform in PHP (Zend Webinar Edition)
 
The Business Case For Telecommuting
The Business Case For TelecommutingThe Business Case For Telecommuting
The Business Case For Telecommuting
 
Php Development In The Cloud
Php Development In The CloudPhp Development In The Cloud
Php Development In The Cloud
 
PHP in a mobile ecosystem
PHP in a mobile ecosystem PHP in a mobile ecosystem
PHP in a mobile ecosystem
 
27 Ways To Be A Better Developer (PHPBenelux 2011)
27 Ways To Be A Better Developer (PHPBenelux 2011)27 Ways To Be A Better Developer (PHPBenelux 2011)
27 Ways To Be A Better Developer (PHPBenelux 2011)
 
Building an SSO platform in php (Zendcon 2010)
Building an SSO platform in php (Zendcon 2010)Building an SSO platform in php (Zendcon 2010)
Building an SSO platform in php (Zendcon 2010)
 
PHP in a Mobile Ecosystem (Zendcon 2010)
PHP in a Mobile Ecosystem (Zendcon 2010)PHP in a Mobile Ecosystem (Zendcon 2010)
PHP in a Mobile Ecosystem (Zendcon 2010)
 
PHP and the Cloud (phpbenelux conference)
PHP and the Cloud (phpbenelux conference)PHP and the Cloud (phpbenelux conference)
PHP and the Cloud (phpbenelux conference)
 
Content Management Selection and Strategy
Content Management Selection and StrategyContent Management Selection and Strategy
Content Management Selection and Strategy
 
PHP and the Cloud
PHP and the CloudPHP and the Cloud
PHP and the Cloud
 
Enterprise PHP Development (Dutch PHP Conference 2008)
Enterprise PHP Development (Dutch PHP Conference 2008)Enterprise PHP Development (Dutch PHP Conference 2008)
Enterprise PHP Development (Dutch PHP Conference 2008)
 
Hello Enterprise, my name is PHP
Hello Enterprise, my name is PHPHello Enterprise, my name is PHP
Hello Enterprise, my name is PHP
 
Introduction to PHP (Casino Affiliate Convention 2008)
Introduction to PHP (Casino Affiliate Convention 2008)Introduction to PHP (Casino Affiliate Convention 2008)
Introduction to PHP (Casino Affiliate Convention 2008)
 
Maatwerk Software
Maatwerk SoftwareMaatwerk Software
Maatwerk Software
 
Introductie Web 2.0
Introductie Web 2.0Introductie Web 2.0
Introductie Web 2.0
 
Migrating from PHP4 To PHP5 - Zend Webinar
Migrating from PHP4 To PHP5 - Zend WebinarMigrating from PHP4 To PHP5 - Zend Webinar
Migrating from PHP4 To PHP5 - Zend Webinar
 
Wat is Open Source?
Wat is Open Source?Wat is Open Source?
Wat is Open Source?
 

Recently uploaded

Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfIngrid Airi González
 
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotesMuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotesManik S Magar
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsRavi Sanghani
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...itnewsafrica
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024TopCSSGallery
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Farhan Tariq
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
React Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkReact Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkPixlogix Infotech
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationKnoldus Inc.
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...itnewsafrica
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 

Recently uploaded (20)

Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdf
 
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotesMuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
MuleSoft Online Meetup Group - B2B Crash Course: Release SparkNotes
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Potential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and InsightsPotential of AI (Generative AI) in Business: Learnings and Insights
Potential of AI (Generative AI) in Business: Learnings and Insights
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...Zeshan Sattar- Assessing the skill requirements and industry expectations for...
Zeshan Sattar- Assessing the skill requirements and industry expectations for...
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
React Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App FrameworkReact Native vs Ionic - The Best Mobile App Framework
React Native vs Ionic - The Best Mobile App Framework
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog Presentation
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...Abdul Kader Baba- Managing Cybersecurity Risks  and Compliance Requirements i...
Abdul Kader Baba- Managing Cybersecurity Risks and Compliance Requirements i...
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 

Enterprise PHP (php|works 2008)

  • 1. Enterprise PHP Development Ivo Jansch - ivo@ibuildings.com php|works 2008 Enterprise PHP
  • 2. What’s an Enterprise? “Any of several ships by that name in the Star Trek universe” – Wikipedia Enterprise PHP
  • 3. What’s an Enterprise? “Any of several ships by that name in the Star Trek universe” – Wikipedia Enterprise PHP
  • 4. What’s an Enterprise? “Any of several ships by that name in the Star Trek universe” – Wikipedia “A business, company or comparable organization” Enterprise PHP
  • 5. PHP usage is changing Enterprise PHP
  • 6. PHP usage is changing • 1998 • Personal stuff Enterprise PHP
  • 7. PHP usage is changing • 1998 • Personal stuff • 2003 • Simple websites • Content management • Blogs Enterprise PHP
  • 8. PHP usage is changing • 1998 • Personal stuff • 2003 • Simple websites • Content management • Blogs • 2008 • Big websites • Banks • Insurance Companies Enterprise PHP
  • 9. PHP’s Quest so far Enterprise SME SOHO Enterprise PHP
  • 10. Is PHP ‘enterprise ready’? Enterprise PHP
  • 11. Is PHP ‘enterprise ready’?  Big  Small  Enterprise friendly  Lightweight  enterpriCe  Inexpensive  CS required  Easy to learn Enterprise PHP
  • 12. A word from my girlfriend It's not the SIZE of the tool... It's how you USE it. Enterprise PHP
  • 13. Traditional PHP metaphor PHP is like LEGO bricks Enterprise PHP
  • 14. Improved metaphor PHP is no longer a toy Let’s use the metaphor of actual bricks Enterprise PHP
  • 15. About Bricks • Extreme Simplicity • Easy to learn • Versatile • Inexpensive Enterprise PHP
  • 16. Enterprise Development In 10 steps Enterprise PHP
  • 17. Step 1 – The Team “I have read about your plans to build a new skyscraper and I am applying for a job. I have a lot of experience with Bricks. I taught myself how to use them and have been maintaining our family shed for a few years now.” Enterprise PHP
  • 18. Step 1 – The Team • Be a Software Engineer • Train your skills • Study OO principles • Consider Zend Certification Enterprise PHP
  • 19. Step 2 - Requirements • What does the customer want? • What will visitors want? • What does the customer really need? Enterprise PHP
  • 20. Step 2 - Requirements Functional Design • Requirements Definition • Interaction Design / Wireframes • Flow Diagrams • Tip: Axure Enterprise PHP
  • 21. Step 3 - Architecture Enterprise PHP
  • 22. Step 3 - Architecture Don’t just start stacking bricks Enterprise PHP
  • 23. Step 3 - Architecture Don’t just start stacking bricks Create an architecture first Enterprise PHP
  • 24. Step 3 - Architecture Technical Design • Modeling • Class Diagrams • ER Diagrams (data model) • Collaboration Diagrams • Use Cases etc. • Tools: • UML • Whiteboards Enterprise PHP
  • 25. Step 3 - Architecture High Level Architectures: • MVC (Model, View, Controller) • SOA (Service Oriented Architecture) • Multi-tier development (Frontend, Application, BL, Data) • CBD (Component Based Development) Enterprise PHP
  • 26. Step 4 - Tools Enterprise PHP
  • 27. Step 4 - Tools You don’t need tools… Enterprise PHP
  • 28. Step 4 - Tools You don’t need tools… But they make you productive Enterprise PHP
  • 29. Step 4 - Tools Development: • Eclipse PDT • Zend Studio • PhpEd • Vim • Komodo IDE’s versus Editors • Debugging & Profiling • Syntax Check • Cross-Referencing / Navigation Enterprise PHP
  • 30. Step 4 - Tools Development: • Eclipse PDT • Zend Studio • PhpEd • Vim • Komodo IDE’s versus Editors • Debugging & Profiling • Syntax Check • Cross-Referencing / Navigation Enterprise PHP
  • 31. Step 4 - Tools Enterprise PHP
  • 32. Step 4 - Tools Source Control • CVS / SVN / MS VSS • Bitkeeper / GIT Enterprise PHP
  • 33. Step 4 - Tools Source Control • CVS / SVN / MS VSS • Bitkeeper / GIT Documentation • phpDocumentor http://phpdoc.org • PHPXRef http://phpxref.sourceforge.net • Wiki http://en.wikipedia.org/wiki/List_of_wiki_software Enterprise PHP
  • 34. Step 5 - Foundation Enterprise PHP
  • 35. Step 5 - Foundation Start stacking bricks? • How many bricks does it take? • What about stability? Enterprise PHP
  • 36. Step 5 - Foundation Start stacking bricks? • How many bricks does it take? • What about stability? Start with a foundation Enterprise PHP
  • 37. Step 5 - Foundation Use a framework • Provides guidelines (frame) • Off the shelf components Examples • Zend Framework – http://framework.zend.com • ezComponents – http://ez.no/ezcomponents • Symfony – http://www.symfony-project.org • ATK – http://www.atk-framework.com Enterprise PHP
  • 38. Step 5 - Foundation The “Not Invented Here” Syndrome: • “The existing frameworks are no good. I can do this better.” • “This framework is no good. It can do A through Y but I need Z.” • “This framework is too big. It provides A-Z but we only need A and B.” • “I know there's a good framework. But I would like to learn.” Enterprise PHP
  • 39. Step 6 - Design Patterns Requirement 1056.4: We need to be able to look outside, but we can't make holes in the wall (rain should be kept outside). When it's sunny, a hole is ok. Enterprise PHP
  • 40. Step 6 - Design Patterns Enterprise PHP
  • 41. Step 6 - Design Patterns • A ‘window’ is a concept • Best practice way of solving a particular problem Enterprise PHP
  • 42. Step 6 - Design Patterns • A ‘window’ is a concept • Best practice way of solving a particular problem • In IT, we call this a ‘design pattern’ Enterprise PHP
  • 43. Step 6 - Design Patterns • A ‘window’ is a concept • Best practice way of solving a particular problem • In IT, we call this a ‘design pattern’ • Popular patterns in PHP: • MVC, Factory, Singleton, Registry, Decorator Enterprise PHP
  • 44. Step 6 - Design Patterns • A ‘window’ is a concept • Best practice way of solving a particular problem • In IT, we call this a ‘design pattern’ • Popular patterns in PHP: • MVC, Factory, Singleton, Registry, Decorator • Good read: • php|architect's Guide to PHP Design Patterns - Jason E. Sweat Enterprise PHP
  • 45. Step 7 - Testing Is your software tested after it has gone live? Enterprise PHP
  • 46. Step 7 - Testing Various types of testing: • Developer testing • Functional testing • Environment testing • Performance testing • Usability testing Enterprise PHP
  • 47. Step 7 - Testing A common scenario… Enterprise PHP
  • 48. Step 7 - Testing The user complains… MWOEHA! BUG! Enterprise PHP
  • 49. Step 7 - Testing Developer attacks the problem… fix_bug(); Enterprise PHP
  • 50. Step 7 - Testing Problem Solved! Enterprise PHP
  • 51. Step 7 - Testing Enterprise PHP
  • 52. Step 7 - Testing • Solution: Unit Tests • Automated testing after each change • Prevents regressions Enterprise PHP
  • 53. Step 7 - Testing • Solution: Unit Tests • Automated testing after each change • Prevents regressions • Testing for PHP applications: • PHPUnit http://www.phpunit.de/ • SimpleTest http://www.lastcraft.com/simple_test.php Enterprise PHP
  • 54. Step 7 - Testing • Solution: Unit Tests • Automated testing after each change • Prevents regressions • Testing for PHP applications: • PHPUnit http://www.phpunit.de/ • SimpleTest http://www.lastcraft.com/simple_test.php • Continuous Integration: •CruiseControl http://cruisecontrol.sourceforge.net/ • phpUnderControl http://www.phpundercontrol.org/ Enterprise PHP
  • 55. Step 7 - Testing • Test Driven Development 1. Define functionality 2. Create testcase 3. Run test => test fails 4. Implement functionality • Test succeeds? Done • Test fails? Refactor Repeat step 4 until finished Enterprise PHP
  • 56. Step 8 - Optimization Users are reporting: quot;I work on the 197th floor. Every day I have to walk the stairs for 2 hours, then I have only 4 hours left to do my job.quot; Enterprise PHP
  • 57. Step 8 - Optimization Solution: Elevator Enterprise PHP
  • 58. Step 8 - Optimization Enterprise PHP
  • 59. Step 8 - Optimization In PHP, this ‘elevator’ is called an ‘accelerator’ Enterprise PHP
  • 60. Step 8 - Optimization In PHP, this ‘elevator’ is called an ‘accelerator’ • This is how PHP works (pseudo-ish code): read index.php; // enter the building compile index.php; // go to floor 197 echo “Hello World”; // get the job done Enterprise PHP
  • 61. Step 8 - Optimization In PHP, this ‘elevator’ is called an ‘accelerator’ • This is how PHP works (pseudo-ish code): read index.php; // enter the building compile index.php; // go to floor 197 echo “Hello World”; // get the job done • An accelerator improves the first 2 steps Enterprise PHP
  • 62. Step 8 - Optimization In PHP, this ‘elevator’ is called an ‘accelerator’ • This is how PHP works (pseudo-ish code): read index.php; // enter the building compile index.php; // go to floor 197 echo “Hello World”; // get the job done • An accelerator improves the first 2 steps • Accelerators for PHP: • APC http://pecl.php.net/package/APC • eAccelerator http://eaccelerator.net/ • Zend Platform http://www.zend.com/products/zend_platform Enterprise PHP
  • 63. Step 8 - Optimization Users complain: “Every time I want coffee I have to go to the top floor to get some.” Enterprise PHP
  • 64. Step 8 - Optimization Enterprise PHP
  • 65. Step 8 - Optimization • Solution: • Create small coffee corners on every floor so people don’t have to go to the main restaurant every time. Enterprise PHP
  • 66. Step 8 - Optimization • Solution: • Create small coffee corners on every floor so people don’t have to go to the main restaurant every time. • In PHP we call this caching • Don’t query the database everytime you need data • Use locally stored copy (file or memory) Enterprise PHP
  • 67. Step 8 - Optimization • Solution: • Create small coffee corners on every floor so people don’t have to go to the main restaurant every time. • In PHP we call this caching • Don’t query the database everytime you need data • Use locally stored copy (file or memory) • PHP Caching solutions: •Zend_Cache http://framework.zend.com • Zend Platform http://www.zend.com/products/zend_platform • Memcached http://danga.com/memcached/ Enterprise PHP
  • 68. Step 9 - Deployment • Lifecycle: • Develop • Test • Deploy to staging environment • Deploy to live • Use SVN • Code is just a part, don't forget the database • Create a 'Deployment & Release Profile' Enterprise PHP
  • 69. Step 9 - Deployment System Architecture PHP MySQL Apache Linux From a simple single machine LAMP stack… Enterprise PHP
  • 70. Step 9 - Deployment … to a High Availability, Scalable Architecture Enterprise PHP
  • 71. Step 10 - Operations Monitoring: • Logfiles • Monitor infrastructure (tools such as Nagios) • Monitor application (tools such as Zend Platform) • Monitor business (is the money still pouring in?) Enterprise PHP
  • 72. Step 10 - Operations Debugging • Ideal: “I had error x when I selected y after I clicked z” • Reality: “It doesn't work!” “What exactly doesn't work, and what did you do?” “It just ******** didn't work, FIX IT.” Enterprise PHP
  • 73. Step 10 - Operations Solutions: • A ‘root cause’ analysis tool • Logging • Context Capture Enterprise PHP
  • 74. Step 10 - Operations Change management: • Ticket system • Stick to your deployment - use the DRP • DON'T TOUCH THE LIVE ENVIRONMENT. EVAH! Enterprise PHP
  • 75. The Big Picture (We’re almost done) Enterprise PHP
  • 77. The Big Picture • No ‘cowboy coding’, but structured steps • Higher quality • Software will be easier to maintain (and cheaper) Enterprise PHP
  • 78. The Big Picture • No ‘cowboy coding’, but structured steps • Higher quality • Software will be easier to maintain (and cheaper) • Development methodology • Waterfall • Agile (DSDM, XP, Scrum) Enterprise PHP
  • 79. The Big Picture • No ‘cowboy coding’, but structured steps • Higher quality • Software will be easier to maintain (and cheaper) • Development methodology • Waterfall • Agile (DSDM, XP, Scrum) • Software Development Life Cycle (SDLC) • Adapt from existing methods, learn from experts • Document it properly • Make it the cornerstone of your development efforts Enterprise PHP
  • 80. More things to think about • Planning • Coding • Implementation • Security Enterprise PHP
  • 81. Shameless Plug Book about this all: • php|architect’s Guide to Enterprise PHP Development • ISBN: 978-0-9738621-8-8 • Order at phparch.com or amazon.com • http://www.enterprisephp.nl Enterprise PHP
  • 82. Questions? ivo@ibuildings.com http://www.ibuildings.com http://www.jansch.nl http://joind.in/talk/view/65 Enterprise PHP