SlideShare a Scribd company logo
1© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Ongoing management of
your PHP 7 application
Jan Burkl
Solution consulting manager
2© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Ask the PHP experts: Series
overview
Now: Ongoing management of your PHP 7 application
Oct. 11: PHP industry roundtable
Join our panel of experts in an open discussion on the latest in PHP news,
technologies, programming practices, and case studies.
3© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Presenter
Jan Burkl
Solution Consulting Manager, Central Europe
Rogue Wave Software
jan.burkl@roguewave.com
Twitter: @janatzend
4© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Watch the on-demand webinar
5© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Security
Tuning
DIY
Scaling
6© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Security tips and techniques
7© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Security
https://en.wikipedia.org/wiki/Security
“Security is the degree of resistance to,
or protection from, harm. It applies to
any vulnerable and/or valuable asset
[…]”
8© 2017 Rogue Wave Software, Inc. All Rights Reserved.
9© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Security pillars
10© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Security pillars
Application
Stack
11© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Security pillars 1/2 – PHP application
• Framework
– Community
– Security policy
• Custom code
– Skillset
– QA tools
12© 2017 Rogue Wave Software, Inc. All Rights Reserved.
OWASP
• Open Web Application Security Project
• Not-for-profit
• Make software security visible
• https://www.owasp.org/index.php/Top_10_2017-Top_10
– Rejected...
– A1: Injection
– A2: Broken Authentication and Session Management
– A3: Cross-Site Scripting (XSS)
– All of the above related to development (8 out of 10 in total)
13© 2017 Rogue Wave Software, Inc. All Rights Reserved.
• (Security) Training
• Security audit
• Application audit
14© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Security pillars 2/2 - Stack
• Support for PHP
• Support for OS
– Hardened CentOS at AWS
• Support for database
• Support for container orchestration
– Docker Swarm, Kubernetes
15© 2017 Rogue Wave Software, Inc. All Rights Reserved.
16© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Scale quickly and efficiently
17© 2017 Rogue Wave Software, Inc. All Rights Reserved.
PHP 7 is fast
0
100
200
300
400
500
600
Magento 1.9 Drupal 7 WordPress 4.1 ZF2 Laravel
PHP 5.6 PHP 7
Requests per Second
18© 2017 Rogue Wave Software, Inc. All Rights Reserved.
PHP 7 is
fast
https://engineering.tumblr.com/post/152998126990/php-7-at-tumblr
19© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Two questions
• Is your app scalable?
– Maybe you know
– Architecture audit
• When to scale?
– Monitoring
• Zend Server
20© 2017 Rogue Wave Software, Inc. All Rights Reserved.
21© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Orchestration
Deployment
22© 2017 Rogue Wave Software, Inc. All Rights Reserved.
(More than) Compute power
• Virtual machines?
• Cloud? (AWS, Azure, Google, ...)
• Container? (Docker, Rocket, ...)
23© 2017 Rogue Wave Software, Inc. All Rights Reserved.
24© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Automation
25© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Tuning best practices
26© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Tuning best practices
Performance?
27© 2017 Rogue Wave Software, Inc. All Rights Reserved.
28© 2017 Rogue Wave Software, Inc. All Rights Reserved.
First step - Monitoring
Left shift XDebug Z-Ray XHProf
Infrastructure
monitoring
Nagios Monit Munin
App
monitoring
Code tracing
Zend Server
monitoring
rules
ELK
29© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Find the bottleneck
30© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Be careful with diagrams 1/3
db_exec()
812 ms
ws_call()
336 ms
render()
145 ms
helper()
17 ms
translate()
12 ms
user
()
10
ms
permission()
8 ms
31© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Be careful with diagrams 2/3
db_exec()
36 ms
ws_call()
336 ms
render()
145 ms
helper()
17 ms
translate()
12 ms
user()
10 ms
permission()
8 ms
32© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Be careful with diagrams 3/3
db_exec()
36 ms ws_call()
8 ms
render()
145 ms
helper()
17 ms
translate()
12 ms
user()
10 ms
permission()
8 ms
33© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Optimize wisely
34© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Do not over-architect
35© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Caching
• OpCode Cache
• Data Cache
– Zend Server Data Cache
– Memcache
– Redis
• Page Cache
– Zend Server Page Cache
– Varnish
36© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Job Queue
• Parallel execution
• Run scripts offline
• Run scripts on other systems
• Distribute the load – space and time
37© 2017 Rogue Wave Software, Inc. All Rights Reserved.
38© 2017 Rogue Wave Software, Inc. All Rights Reserved.
“We wanted to be able to
scale up and sell other
services on the same
foundation, not just build
telecom functionality.”
Youri Treur
director e-commerce and support at Simpel
39© 2017 Rogue Wave Software, Inc. All Rights Reserved.
When and why do-it-yourself fails
40© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Dev, DevOps
• Application migration
• Framework migration
• Tests
• Tools
• OS upgrade
• Best practices
Management
• Time-to-market
• Reduce risk
• Minimize costs
41© 2017 Rogue Wave Software, Inc. All Rights Reserved.
“Being a game changer is all
about time to market. This
means having efficient
change management, being
flexible as a company [...].
Finding suppliers that are the
best at what they do helped
us do this.”
Kai Stevens, Enrise
42© 2017 Rogue Wave Software, Inc. All Rights Reserved.
43© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Danke Schön!
jan.burkl@roguewave.com
44© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Watch the on-demand webinar
45© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Q&A
46© 2017 Rogue Wave Software, Inc. All Rights Reserved.
ZendCon 2017
47© 2017 Rogue Wave Software, Inc. All Rights Reserved.
Stay tuned
Oct. 11: PHP industry roundtable
Join our panel of experts in an open discussion on the latest in PHP news,
technologies, programming practices, and case studies.
Register now.
48© 2017 Rogue Wave Software, Inc. All Rights Reserved.

More Related Content

PDF
DevSecOps - Building continuous security into it and app infrastructures
PDF
SC conference - Building AppSec Teams
PDF
Full Spectrum Engineering – The New Full-stack
PDF
Take Control: Design a Complete DevSecOps Program
PDF
Security as Code
PDF
Monitoring Application Attack Surface to Integrate Security into DevOps Pipel...
PDF
Devops: Security's big opportunity by Peter Chestna
PDF
Automating Security Compliance on AWS with DevSecOps
DevSecOps - Building continuous security into it and app infrastructures
SC conference - Building AppSec Teams
Full Spectrum Engineering – The New Full-stack
Take Control: Design a Complete DevSecOps Program
Security as Code
Monitoring Application Attack Surface to Integrate Security into DevOps Pipel...
Devops: Security's big opportunity by Peter Chestna
Automating Security Compliance on AWS with DevSecOps

What's hot (19)

PDF
Csa Summit 2017 - Un viaje seguro hacia la nube
PDF
From rogue one to rebel alliance by Peter Chestna
PDF
Monitoring Application Attack Surface and Integrating Security into DevOps Pi...
PPTX
Scaling Rugged DevOps to Thousands of Applications - Panel Discussion
PDF
Practical DevSecOps - Arief Karfianto
PDF
Create a Unified View of Your Application Security Program – Black Duck Hub a...
PDF
Practical appsec lessons learned in the age of agile and DevOps
PDF
Owasp summit 2017
PDF
Painless DevSecOps: Building Security Into Your DevOps Pipeline
PDF
Dos and Don'ts of DevSecOps
PDF
ThreadFix 2.5 Webinar
PPTX
DevSecOps
PPTX
Culture Hacker: How to Herd CATTs and Inspire Rebels to Change the World! - S...
DOCX
10 things to get right for successful dev secops
PDF
Microsoft DevOps Forum 2021 – DevOps & Security
PPTX
DevSecOps reference architectures 2018
PDF
AppSec Fast and Slow: Your DevSecOps CI/CD Pipeline Isn’t an SSA Program
PDF
Automated Server Administration for DevSecOps
Csa Summit 2017 - Un viaje seguro hacia la nube
From rogue one to rebel alliance by Peter Chestna
Monitoring Application Attack Surface and Integrating Security into DevOps Pi...
Scaling Rugged DevOps to Thousands of Applications - Panel Discussion
Practical DevSecOps - Arief Karfianto
Create a Unified View of Your Application Security Program – Black Duck Hub a...
Practical appsec lessons learned in the age of agile and DevOps
Owasp summit 2017
Painless DevSecOps: Building Security Into Your DevOps Pipeline
Dos and Don'ts of DevSecOps
ThreadFix 2.5 Webinar
DevSecOps
Culture Hacker: How to Herd CATTs and Inspire Rebels to Change the World! - S...
10 things to get right for successful dev secops
Microsoft DevOps Forum 2021 – DevOps & Security
DevSecOps reference architectures 2018
AppSec Fast and Slow: Your DevSecOps CI/CD Pipeline Isn’t an SSA Program
Automated Server Administration for DevSecOps
Ad

Similar to Ongoing management of your PHP 7 application (20)

PPTX
Speed and security for your PHP application
PPTX
Unit testing for project managers
PPTX
Plan a successful enterprise Linux migration
PPTX
Continuous security: Bringing agility to the secure development lifecycle
PDF
Securing Your Enterprise Continuous Delivery Pipelines with CA Automation Sol...
PPTX
Découvrez le Rugged DevOps
PDF
Modern Application Development for the Enterprise
PPTX
iThome Cloud Summit 2017 - 實戰 Hybrid Cloud 管理與安全技術
PDF
Strategies on How to Overcome Security Challenges Unique to Cloud-Native Apps
PDF
Scale Continuous Deployment to Production with DeployHub and CloudBees
PDF
Scale Continuous Deployment to Production with DeployHub and CloudBees
PPTX
What if you could eliminate the hidden costs of development?
PPTX
How APIs are transforming large enterprises
PDF
Database as code in Devops - DBを10分間で1000個構築するDB仮想化テクノロジーとは?(Adam)
PDF
Securing a Great Developer Experience - DevOps Indonesia Meetup by Stefan Str...
PPTX
Are open source and embedded software development on a collision course?
PDF
Automated Software Modernization
PPTX
Mobile security part 1(Android Apps Pentesting)- Romansh yadav
PDF
【Primer】WebApp release in 3 hours! Programming from scratch Rails course
PPTX
Enterprise Linux: Justify your migration from Red Hat to CentOS
Speed and security for your PHP application
Unit testing for project managers
Plan a successful enterprise Linux migration
Continuous security: Bringing agility to the secure development lifecycle
Securing Your Enterprise Continuous Delivery Pipelines with CA Automation Sol...
Découvrez le Rugged DevOps
Modern Application Development for the Enterprise
iThome Cloud Summit 2017 - 實戰 Hybrid Cloud 管理與安全技術
Strategies on How to Overcome Security Challenges Unique to Cloud-Native Apps
Scale Continuous Deployment to Production with DeployHub and CloudBees
Scale Continuous Deployment to Production with DeployHub and CloudBees
What if you could eliminate the hidden costs of development?
How APIs are transforming large enterprises
Database as code in Devops - DBを10分間で1000個構築するDB仮想化テクノロジーとは?(Adam)
Securing a Great Developer Experience - DevOps Indonesia Meetup by Stefan Str...
Are open source and embedded software development on a collision course?
Automated Software Modernization
Mobile security part 1(Android Apps Pentesting)- Romansh yadav
【Primer】WebApp release in 3 hours! Programming from scratch Rails course
Enterprise Linux: Justify your migration from Red Hat to CentOS
Ad

More from Zend by Rogue Wave Software (20)

PDF
Develop microservices in php
PPTX
Building and managing applications fast for IBM i
PDF
Building web APIs in PHP with Zend Expressive
PPTX
To PHP 7 and beyond
PDF
Speed up web APIs with Expressive and Swoole (PHP Day 2018)
PDF
The Sodium crypto library of PHP 7.2 (PHP Day 2018)
PDF
Develop web APIs in PHP using middleware with Expressive (Code Europe)
PDF
Middleware web APIs in PHP 7.x
PDF
Developing web APIs using middleware in PHP 7
PDF
The Docker development template for PHP
PDF
The most exciting features of PHP 7.1
PDF
The new features of PHP 7
PPTX
Deploying PHP apps on the cloud
PPTX
Data is dead. Long live data!
PPTX
Optimizing performance
PPTX
Resolving problems & high availability
PPTX
Developing apps faster
PPTX
Keeping up with PHP
PPTX
Fundamentals of performance tuning PHP on IBM i
PPTX
Getting started with PHP on IBM i
Develop microservices in php
Building and managing applications fast for IBM i
Building web APIs in PHP with Zend Expressive
To PHP 7 and beyond
Speed up web APIs with Expressive and Swoole (PHP Day 2018)
The Sodium crypto library of PHP 7.2 (PHP Day 2018)
Develop web APIs in PHP using middleware with Expressive (Code Europe)
Middleware web APIs in PHP 7.x
Developing web APIs using middleware in PHP 7
The Docker development template for PHP
The most exciting features of PHP 7.1
The new features of PHP 7
Deploying PHP apps on the cloud
Data is dead. Long live data!
Optimizing performance
Resolving problems & high availability
Developing apps faster
Keeping up with PHP
Fundamentals of performance tuning PHP on IBM i
Getting started with PHP on IBM i

Recently uploaded (20)

PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
top salesforce developer skills in 2025.pdf
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Nekopoi APK 2025 free lastest update
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PPTX
ai tools demonstartion for schools and inter college
PPTX
Introduction to Artificial Intelligence
PPTX
ManageIQ - Sprint 268 Review - Slide Deck
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
Softaken Excel to vCard Converter Software.pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
2025 Textile ERP Trends: SAP, Odoo & Oracle
top salesforce developer skills in 2025.pdf
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Upgrade and Innovation Strategies for SAP ERP Customers
CHAPTER 2 - PM Management and IT Context
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Nekopoi APK 2025 free lastest update
Wondershare Filmora 15 Crack With Activation Key [2025
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
How to Choose the Right IT Partner for Your Business in Malaysia
ai tools demonstartion for schools and inter college
Introduction to Artificial Intelligence
ManageIQ - Sprint 268 Review - Slide Deck
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Design an Analysis of Algorithms II-SECS-1021-03
Softaken Excel to vCard Converter Software.pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025

Ongoing management of your PHP 7 application

  • 1. 1© 2017 Rogue Wave Software, Inc. All Rights Reserved. Ongoing management of your PHP 7 application Jan Burkl Solution consulting manager
  • 2. 2© 2017 Rogue Wave Software, Inc. All Rights Reserved. Ask the PHP experts: Series overview Now: Ongoing management of your PHP 7 application Oct. 11: PHP industry roundtable Join our panel of experts in an open discussion on the latest in PHP news, technologies, programming practices, and case studies.
  • 3. 3© 2017 Rogue Wave Software, Inc. All Rights Reserved. Presenter Jan Burkl Solution Consulting Manager, Central Europe Rogue Wave Software jan.burkl@roguewave.com Twitter: @janatzend
  • 4. 4© 2017 Rogue Wave Software, Inc. All Rights Reserved. Watch the on-demand webinar
  • 5. 5© 2017 Rogue Wave Software, Inc. All Rights Reserved. Security Tuning DIY Scaling
  • 6. 6© 2017 Rogue Wave Software, Inc. All Rights Reserved. Security tips and techniques
  • 7. 7© 2017 Rogue Wave Software, Inc. All Rights Reserved. Security https://en.wikipedia.org/wiki/Security “Security is the degree of resistance to, or protection from, harm. It applies to any vulnerable and/or valuable asset […]”
  • 8. 8© 2017 Rogue Wave Software, Inc. All Rights Reserved.
  • 9. 9© 2017 Rogue Wave Software, Inc. All Rights Reserved. Security pillars
  • 10. 10© 2017 Rogue Wave Software, Inc. All Rights Reserved. Security pillars Application Stack
  • 11. 11© 2017 Rogue Wave Software, Inc. All Rights Reserved. Security pillars 1/2 – PHP application • Framework – Community – Security policy • Custom code – Skillset – QA tools
  • 12. 12© 2017 Rogue Wave Software, Inc. All Rights Reserved. OWASP • Open Web Application Security Project • Not-for-profit • Make software security visible • https://www.owasp.org/index.php/Top_10_2017-Top_10 – Rejected... – A1: Injection – A2: Broken Authentication and Session Management – A3: Cross-Site Scripting (XSS) – All of the above related to development (8 out of 10 in total)
  • 13. 13© 2017 Rogue Wave Software, Inc. All Rights Reserved. • (Security) Training • Security audit • Application audit
  • 14. 14© 2017 Rogue Wave Software, Inc. All Rights Reserved. Security pillars 2/2 - Stack • Support for PHP • Support for OS – Hardened CentOS at AWS • Support for database • Support for container orchestration – Docker Swarm, Kubernetes
  • 15. 15© 2017 Rogue Wave Software, Inc. All Rights Reserved.
  • 16. 16© 2017 Rogue Wave Software, Inc. All Rights Reserved. Scale quickly and efficiently
  • 17. 17© 2017 Rogue Wave Software, Inc. All Rights Reserved. PHP 7 is fast 0 100 200 300 400 500 600 Magento 1.9 Drupal 7 WordPress 4.1 ZF2 Laravel PHP 5.6 PHP 7 Requests per Second
  • 18. 18© 2017 Rogue Wave Software, Inc. All Rights Reserved. PHP 7 is fast https://engineering.tumblr.com/post/152998126990/php-7-at-tumblr
  • 19. 19© 2017 Rogue Wave Software, Inc. All Rights Reserved. Two questions • Is your app scalable? – Maybe you know – Architecture audit • When to scale? – Monitoring • Zend Server
  • 20. 20© 2017 Rogue Wave Software, Inc. All Rights Reserved.
  • 21. 21© 2017 Rogue Wave Software, Inc. All Rights Reserved. Orchestration Deployment
  • 22. 22© 2017 Rogue Wave Software, Inc. All Rights Reserved. (More than) Compute power • Virtual machines? • Cloud? (AWS, Azure, Google, ...) • Container? (Docker, Rocket, ...)
  • 23. 23© 2017 Rogue Wave Software, Inc. All Rights Reserved.
  • 24. 24© 2017 Rogue Wave Software, Inc. All Rights Reserved. Automation
  • 25. 25© 2017 Rogue Wave Software, Inc. All Rights Reserved. Tuning best practices
  • 26. 26© 2017 Rogue Wave Software, Inc. All Rights Reserved. Tuning best practices Performance?
  • 27. 27© 2017 Rogue Wave Software, Inc. All Rights Reserved.
  • 28. 28© 2017 Rogue Wave Software, Inc. All Rights Reserved. First step - Monitoring Left shift XDebug Z-Ray XHProf Infrastructure monitoring Nagios Monit Munin App monitoring Code tracing Zend Server monitoring rules ELK
  • 29. 29© 2017 Rogue Wave Software, Inc. All Rights Reserved. Find the bottleneck
  • 30. 30© 2017 Rogue Wave Software, Inc. All Rights Reserved. Be careful with diagrams 1/3 db_exec() 812 ms ws_call() 336 ms render() 145 ms helper() 17 ms translate() 12 ms user () 10 ms permission() 8 ms
  • 31. 31© 2017 Rogue Wave Software, Inc. All Rights Reserved. Be careful with diagrams 2/3 db_exec() 36 ms ws_call() 336 ms render() 145 ms helper() 17 ms translate() 12 ms user() 10 ms permission() 8 ms
  • 32. 32© 2017 Rogue Wave Software, Inc. All Rights Reserved. Be careful with diagrams 3/3 db_exec() 36 ms ws_call() 8 ms render() 145 ms helper() 17 ms translate() 12 ms user() 10 ms permission() 8 ms
  • 33. 33© 2017 Rogue Wave Software, Inc. All Rights Reserved. Optimize wisely
  • 34. 34© 2017 Rogue Wave Software, Inc. All Rights Reserved. Do not over-architect
  • 35. 35© 2017 Rogue Wave Software, Inc. All Rights Reserved. Caching • OpCode Cache • Data Cache – Zend Server Data Cache – Memcache – Redis • Page Cache – Zend Server Page Cache – Varnish
  • 36. 36© 2017 Rogue Wave Software, Inc. All Rights Reserved. Job Queue • Parallel execution • Run scripts offline • Run scripts on other systems • Distribute the load – space and time
  • 37. 37© 2017 Rogue Wave Software, Inc. All Rights Reserved.
  • 38. 38© 2017 Rogue Wave Software, Inc. All Rights Reserved. “We wanted to be able to scale up and sell other services on the same foundation, not just build telecom functionality.” Youri Treur director e-commerce and support at Simpel
  • 39. 39© 2017 Rogue Wave Software, Inc. All Rights Reserved. When and why do-it-yourself fails
  • 40. 40© 2017 Rogue Wave Software, Inc. All Rights Reserved. Dev, DevOps • Application migration • Framework migration • Tests • Tools • OS upgrade • Best practices Management • Time-to-market • Reduce risk • Minimize costs
  • 41. 41© 2017 Rogue Wave Software, Inc. All Rights Reserved. “Being a game changer is all about time to market. This means having efficient change management, being flexible as a company [...]. Finding suppliers that are the best at what they do helped us do this.” Kai Stevens, Enrise
  • 42. 42© 2017 Rogue Wave Software, Inc. All Rights Reserved.
  • 43. 43© 2017 Rogue Wave Software, Inc. All Rights Reserved. Danke Schön! jan.burkl@roguewave.com
  • 44. 44© 2017 Rogue Wave Software, Inc. All Rights Reserved. Watch the on-demand webinar
  • 45. 45© 2017 Rogue Wave Software, Inc. All Rights Reserved. Q&A
  • 46. 46© 2017 Rogue Wave Software, Inc. All Rights Reserved. ZendCon 2017
  • 47. 47© 2017 Rogue Wave Software, Inc. All Rights Reserved. Stay tuned Oct. 11: PHP industry roundtable Join our panel of experts in an open discussion on the latest in PHP news, technologies, programming practices, and case studies. Register now.
  • 48. 48© 2017 Rogue Wave Software, Inc. All Rights Reserved.