SlideShare a Scribd company logo
1 of 25
PHP 7 Introduction
Speaker: Vo Hoang Long - Web Developer <vlong@yahoo-corp.jp>
Company: Techbase VietNam
$agenda
 Brief of PHP 7
 New PHP Engine
 Benchmark speed PHP 7 vs PHP 5
 Some new things in PHP 7
 Setup environment to testing PHP 7
 Quick view about CVE-201504024
Brief of PHP 7
The current stable release uses the version number PHP 5.6.
After some dispute the development team decided they would
omit the PHP 6 name for the next major release. PHP 6 already
existed in the past as an experimental project but never reached
the production phase.
To prevent users from mixing up the former attempt with the
latest development, the new major release will run under the
name of PHP 7.
It released in 03 Dec 2015
The New Zend Engine
• The current PHP 5.X series use Zend Engine II that enhanced
the funtionality of the initial engine and adds an extensible
object model and a significant performance enhancement to
the language.
• PHP 7 receives a brand new version of the engine coming
under the code name of PHP#NG (Next Generation).
Benchmark PHP 7 vs PHP 5
• The development team of PHPNG refactored the Zend Engine,
remarkably optimized memory usage and added just-in-time
compilation (JIT) which allows compilation at run time rather
than prior to execution.
• The results? You can see the performance benchmarks
provided by the Zend Performance Team below. By using PHP
7 not only your code will be executed faster but you will also
need fewer servers to serve the same amount of users.
Code demo benchmark
Some new things in PHP 7
Uniform Variable Syntax
 Code demo
 Read more :
https://wiki.php.net/rfc/uniform_variable_syntax
Exceptions in the engine
 Code demo
 Read more :
https://wiki.php.net/rfc/engine_exceptions_for_php7
Combined Comparison
(Spaceship) Operator
 Code demo
 Read more :
https://wiki.php.net/rfc/combined-comparison-operator
Combined Comparison
(Spaceship) Operator
 Code demo
 Read more :
https://wiki.php.net/rfc/combined-comparison-operator
Null Coalesce Operator
 Code demo
 Read more :
https://wiki.php.net/rfc/isset_ternary
Null Coalesce Operator
 Code demo
 Read more :
https://wiki.php.net/rfc/isset_ternary
Group Use Declarations
 Code demo
 Read more :
https://wiki.php.net/rfc/group_use_declarations
Anonymous classes
 Code demo
 Read more :
http://php.net/manual/en/language.oop5.anonymous.php
Return Type Declarations
Code demo
 Read more :
https://wiki.php.net/rfc/return_types
Setup environment to testing
PHP 7
• Install Vagrant and Virtualbox
• Then:
$ git clone https://github.com/rlerdorf/php7dev.git
$ cd php7dev
$ vagrant up
... (takes a bit - it is downloading 1.5G)
$ vagrant ssh
• It will NAT, DHCP and also has a fixed address of 192.168.7.7
• http://192.168.7.7/ will show you the PHP 7 phpinfo() page
• View more : github.com/rlerdorf/php7dev
CVE-201504024
• Vulnerability CVE - 2015-4024 code is considered serious
when allowing an attacker perform denial-of-service attack (
DoS ) caused major losses to the server with a small code
snippet . If a system is equipped botnet using this strategy ,
the damage caused would be terrible .
• CVE - 2015-4024 was reported by a security researcher at
Baidu , China , based on logic bug in the HTTP header analysis
of PHP , which if created a special HTTP header section , you
can push CPU of the server is up 100 % makes all other
functions become paralyzed .
PHP version has error
PHP 5.6.(<9)
PHP 5.5.(<25)
5.4.(<41)
5.3.*
5.2.*
What is problem ?
Content-Disposition: form-data; name="file"; filename="test.txt”
Content-Type: application/octet-stream
Content-Disposition: form-data; name="file"; filename="s
a
a
a
a"
Content-Type: application/octet-stream
<?php phpinfo();?>
Demo attacking
Q&A
Thank you !

More Related Content

What's hot

Comparison of Programming Platforms
Comparison of Programming PlatformsComparison of Programming Platforms
Comparison of Programming PlatformsAnup Hariharan Nair
 
Developing Cross Platform Applications with Golang
Developing Cross Platform Applications with GolangDeveloping Cross Platform Applications with Golang
Developing Cross Platform Applications with GolangErhan Yakut
 
Beginning with Composer - Dependency manager in php
Beginning with Composer  - Dependency manager in php Beginning with Composer  - Dependency manager in php
Beginning with Composer - Dependency manager in php Yogesh Salvi
 
Plenv and perl build, and search.cpan.org
Plenv and perl build, and search.cpan.orgPlenv and perl build, and search.cpan.org
Plenv and perl build, and search.cpan.orgTokuhiro Matsuno
 
Tail Call Elimination in Open Smalltalk
Tail Call Elimination in Open SmalltalkTail Call Elimination in Open Smalltalk
Tail Call Elimination in Open SmalltalkESUG
 
Building Command Line Tools with Golang
Building Command Line Tools with GolangBuilding Command Line Tools with Golang
Building Command Line Tools with GolangTakaaki Mizuno
 
Introduction of laravel framework.
Introduction of laravel framework.Introduction of laravel framework.
Introduction of laravel framework.Omid Nikrah
 
Challenges in Debugging Bootstraps of Reflective Kernels
Challenges in Debugging Bootstraps of Reflective KernelsChallenges in Debugging Bootstraps of Reflective Kernels
Challenges in Debugging Bootstraps of Reflective KernelsESUG
 
PHPUnit with Magento
PHPUnit with MagentoPHPUnit with Magento
PHPUnit with MagentoTu Hoang
 
laravel Elegant artisan by santosh pawar
laravel Elegant artisan by santosh pawarlaravel Elegant artisan by santosh pawar
laravel Elegant artisan by santosh pawarSantosh Pawar
 
Red5 Open Source Flash Server
Red5 Open Source Flash ServerRed5 Open Source Flash Server
Red5 Open Source Flash ServerSunil Swain
 
Phalcon / Zephir Introduction at PHPConfTW2013
Phalcon / Zephir Introduction at PHPConfTW2013Phalcon / Zephir Introduction at PHPConfTW2013
Phalcon / Zephir Introduction at PHPConfTW2013Rack Lin
 
Joomla Code Quality Control and Automation Testing
Joomla Code Quality Control and Automation TestingJoomla Code Quality Control and Automation Testing
Joomla Code Quality Control and Automation TestingShyam Sunder Verma
 
Salt and pepper — native code in the browser Browser using Google native Client
Salt and pepper — native code in the browser Browser using Google native ClientSalt and pepper — native code in the browser Browser using Google native Client
Salt and pepper — native code in the browser Browser using Google native ClientMayflower GmbH
 
Os Koziarsky
Os KoziarskyOs Koziarsky
Os Koziarskyoscon2007
 

What's hot (19)

Comparison of Programming Platforms
Comparison of Programming PlatformsComparison of Programming Platforms
Comparison of Programming Platforms
 
Developing Cross Platform Applications with Golang
Developing Cross Platform Applications with GolangDeveloping Cross Platform Applications with Golang
Developing Cross Platform Applications with Golang
 
Beginning with Composer - Dependency manager in php
Beginning with Composer  - Dependency manager in php Beginning with Composer  - Dependency manager in php
Beginning with Composer - Dependency manager in php
 
Plenv and perl build, and search.cpan.org
Plenv and perl build, and search.cpan.orgPlenv and perl build, and search.cpan.org
Plenv and perl build, and search.cpan.org
 
Tail Call Elimination in Open Smalltalk
Tail Call Elimination in Open SmalltalkTail Call Elimination in Open Smalltalk
Tail Call Elimination in Open Smalltalk
 
What’s new in CSharp6
What’s new in CSharp6What’s new in CSharp6
What’s new in CSharp6
 
Building Command Line Tools with Golang
Building Command Line Tools with GolangBuilding Command Line Tools with Golang
Building Command Line Tools with Golang
 
Introduction of laravel framework.
Introduction of laravel framework.Introduction of laravel framework.
Introduction of laravel framework.
 
Challenges in Debugging Bootstraps of Reflective Kernels
Challenges in Debugging Bootstraps of Reflective KernelsChallenges in Debugging Bootstraps of Reflective Kernels
Challenges in Debugging Bootstraps of Reflective Kernels
 
PHPUnit with Magento
PHPUnit with MagentoPHPUnit with Magento
PHPUnit with Magento
 
Groovy demo
Groovy demoGroovy demo
Groovy demo
 
laravel Elegant artisan by santosh pawar
laravel Elegant artisan by santosh pawarlaravel Elegant artisan by santosh pawar
laravel Elegant artisan by santosh pawar
 
Red5 Open Source Flash Server
Red5 Open Source Flash ServerRed5 Open Source Flash Server
Red5 Open Source Flash Server
 
Phalcon / Zephir Introduction at PHPConfTW2013
Phalcon / Zephir Introduction at PHPConfTW2013Phalcon / Zephir Introduction at PHPConfTW2013
Phalcon / Zephir Introduction at PHPConfTW2013
 
Why and what is go
Why and what is goWhy and what is go
Why and what is go
 
Joomla Code Quality Control and Automation Testing
Joomla Code Quality Control and Automation TestingJoomla Code Quality Control and Automation Testing
Joomla Code Quality Control and Automation Testing
 
Phalcon overview
Phalcon overviewPhalcon overview
Phalcon overview
 
Salt and pepper — native code in the browser Browser using Google native Client
Salt and pepper — native code in the browser Browser using Google native ClientSalt and pepper — native code in the browser Browser using Google native Client
Salt and pepper — native code in the browser Browser using Google native Client
 
Os Koziarsky
Os KoziarskyOs Koziarsky
Os Koziarsky
 

Viewers also liked

Diseño de proyecto chile
Diseño de proyecto chileDiseño de proyecto chile
Diseño de proyecto chilejhonny chile
 
Términos básicos en estadística
Términos básicos en estadísticaTérminos básicos en estadística
Términos básicos en estadísticaJorleyRizzo
 
GallupReport - Strengths Insights
GallupReport - Strengths InsightsGallupReport - Strengths Insights
GallupReport - Strengths InsightsTim Parr
 
Ue apch-1 proyecto final parcial 1
Ue apch-1 proyecto final parcial 1Ue apch-1 proyecto final parcial 1
Ue apch-1 proyecto final parcial 1jhonny chile
 
Satish_Aware_Selenium_16Mar2016 (1)
Satish_Aware_Selenium_16Mar2016 (1)Satish_Aware_Selenium_16Mar2016 (1)
Satish_Aware_Selenium_16Mar2016 (1)Satish Aware
 
Fixing the most common patient complaints
Fixing the most common patient complaintsFixing the most common patient complaints
Fixing the most common patient complaintsCare Analytics
 
感受前门步行街2
感受前门步行街2感受前门步行街2
感受前门步行街2guestfd81e1
 
Nursing home self assessment surveys and patient satisfaction
Nursing home self assessment surveys and patient satisfactionNursing home self assessment surveys and patient satisfaction
Nursing home self assessment surveys and patient satisfactionCare Analytics
 
What is wrong with the sri lankan economy
What is wrong with the sri lankan economyWhat is wrong with the sri lankan economy
What is wrong with the sri lankan economyAdvocata Institute
 
Comunidades virtuales
Comunidades virtualesComunidades virtuales
Comunidades virtualesMarilu_Samano
 
Nâng cao hiệu quả quản trị tài sản ngắn hạn tại công ty tnhh hệ thống tin học...
Nâng cao hiệu quả quản trị tài sản ngắn hạn tại công ty tnhh hệ thống tin học...Nâng cao hiệu quả quản trị tài sản ngắn hạn tại công ty tnhh hệ thống tin học...
Nâng cao hiệu quả quản trị tài sản ngắn hạn tại công ty tnhh hệ thống tin học...https://www.facebook.com/garmentspace
 
Casestudy Marketing Plan - Bản kế hoạch marketing cho Pico
Casestudy Marketing Plan - Bản kế hoạch marketing cho PicoCasestudy Marketing Plan - Bản kế hoạch marketing cho Pico
Casestudy Marketing Plan - Bản kế hoạch marketing cho Picocamnangmarketing
 
Comunidades virtuales
Comunidades virtualesComunidades virtuales
Comunidades virtualesemmanu31
 

Viewers also liked (16)

Sajin_CV
Sajin_CVSajin_CV
Sajin_CV
 
Товароведение
ТовароведениеТовароведение
Товароведение
 
Diseño de proyecto chile
Diseño de proyecto chileDiseño de proyecto chile
Diseño de proyecto chile
 
Términos básicos en estadística
Términos básicos en estadísticaTérminos básicos en estadística
Términos básicos en estadística
 
GallupReport - Strengths Insights
GallupReport - Strengths InsightsGallupReport - Strengths Insights
GallupReport - Strengths Insights
 
Ue apch-1 proyecto final parcial 1
Ue apch-1 proyecto final parcial 1Ue apch-1 proyecto final parcial 1
Ue apch-1 proyecto final parcial 1
 
Satish_Aware_Selenium_16Mar2016 (1)
Satish_Aware_Selenium_16Mar2016 (1)Satish_Aware_Selenium_16Mar2016 (1)
Satish_Aware_Selenium_16Mar2016 (1)
 
Fixing the most common patient complaints
Fixing the most common patient complaintsFixing the most common patient complaints
Fixing the most common patient complaints
 
感受前门步行街2
感受前门步行街2感受前门步行街2
感受前门步行街2
 
Nursing home self assessment surveys and patient satisfaction
Nursing home self assessment surveys and patient satisfactionNursing home self assessment surveys and patient satisfaction
Nursing home self assessment surveys and patient satisfaction
 
What is wrong with the sri lankan economy
What is wrong with the sri lankan economyWhat is wrong with the sri lankan economy
What is wrong with the sri lankan economy
 
Comunidades virtuales
Comunidades virtualesComunidades virtuales
Comunidades virtuales
 
Nâng cao hiệu quả quản trị tài sản ngắn hạn tại công ty tnhh hệ thống tin học...
Nâng cao hiệu quả quản trị tài sản ngắn hạn tại công ty tnhh hệ thống tin học...Nâng cao hiệu quả quản trị tài sản ngắn hạn tại công ty tnhh hệ thống tin học...
Nâng cao hiệu quả quản trị tài sản ngắn hạn tại công ty tnhh hệ thống tin học...
 
Casestudy Marketing Plan - Bản kế hoạch marketing cho Pico
Casestudy Marketing Plan - Bản kế hoạch marketing cho PicoCasestudy Marketing Plan - Bản kế hoạch marketing cho Pico
Casestudy Marketing Plan - Bản kế hoạch marketing cho Pico
 
t_mashapa[1]
t_mashapa[1]t_mashapa[1]
t_mashapa[1]
 
Comunidades virtuales
Comunidades virtualesComunidades virtuales
Comunidades virtuales
 

Similar to Php7

Php5 vs php7
Php5 vs php7Php5 vs php7
Php5 vs php7gentlex2
 
Php 5.6 vs Php 7 performance comparison
Php 5.6 vs Php 7 performance comparisonPhp 5.6 vs Php 7 performance comparison
Php 5.6 vs Php 7 performance comparisonTu Pham
 
Professional PHP: an open-source alternative for enterprise development [Antw...
Professional PHP: an open-source alternative for enterprise development [Antw...Professional PHP: an open-source alternative for enterprise development [Antw...
Professional PHP: an open-source alternative for enterprise development [Antw...Combell NV
 
PHP 7X New Features
PHP 7X New FeaturesPHP 7X New Features
PHP 7X New FeaturesThanh Tai
 
Integrating PHP With System-i using Web Services
Integrating PHP With System-i using Web ServicesIntegrating PHP With System-i using Web Services
Integrating PHP With System-i using Web ServicesIvo Jansch
 
Php Conference Brazil - Phalcon Giant Killer
Php Conference Brazil - Phalcon Giant KillerPhp Conference Brazil - Phalcon Giant Killer
Php Conference Brazil - Phalcon Giant KillerJackson F. de A. Mafra
 
What's new in PHP 7.4
What's new in PHP 7.4What's new in PHP 7.4
What's new in PHP 7.4Andrea Maccis
 
Codeception: introduction to php testing (v2 - Aberdeen php)
Codeception: introduction to php testing (v2 - Aberdeen php)Codeception: introduction to php testing (v2 - Aberdeen php)
Codeception: introduction to php testing (v2 - Aberdeen php)Engineor
 
php 7.4 for word press developers
php 7.4 for word press developersphp 7.4 for word press developers
php 7.4 for word press developersRahul Rana
 
Codeception: introduction to php testing
Codeception: introduction to php testingCodeception: introduction to php testing
Codeception: introduction to php testingEngineor
 
PHP - Programming language war, does it matter
PHP - Programming language war, does it matterPHP - Programming language war, does it matter
PHP - Programming language war, does it matterMizno Kruge
 
PHP 5.4 - Begin your love affair with traits
PHP 5.4 - Begin your love affair with traitsPHP 5.4 - Begin your love affair with traits
PHP 5.4 - Begin your love affair with traitsGraham Weldon
 
Api details for american syscorp
Api details for american syscorpApi details for american syscorp
Api details for american syscorpCarmor Bass
 
API Details For Ascitconsultancyservices.com
API Details For Ascitconsultancyservices.comAPI Details For Ascitconsultancyservices.com
API Details For Ascitconsultancyservices.comCarmor Bass
 

Similar to Php7 (20)

Php5 vs php7
Php5 vs php7Php5 vs php7
Php5 vs php7
 
Php 5.6 vs Php 7 performance comparison
Php 5.6 vs Php 7 performance comparisonPhp 5.6 vs Php 7 performance comparison
Php 5.6 vs Php 7 performance comparison
 
Professional PHP: an open-source alternative for enterprise development [Antw...
Professional PHP: an open-source alternative for enterprise development [Antw...Professional PHP: an open-source alternative for enterprise development [Antw...
Professional PHP: an open-source alternative for enterprise development [Antw...
 
PHP 7X New Features
PHP 7X New FeaturesPHP 7X New Features
PHP 7X New Features
 
Start using PHP 7
Start using PHP 7Start using PHP 7
Start using PHP 7
 
Wc13
Wc13Wc13
Wc13
 
Introduction to PHP
Introduction to PHPIntroduction to PHP
Introduction to PHP
 
Integrating PHP With System-i using Web Services
Integrating PHP With System-i using Web ServicesIntegrating PHP With System-i using Web Services
Integrating PHP With System-i using Web Services
 
Php Conference Brazil - Phalcon Giant Killer
Php Conference Brazil - Phalcon Giant KillerPhp Conference Brazil - Phalcon Giant Killer
Php Conference Brazil - Phalcon Giant Killer
 
What's new in PHP 7.4
What's new in PHP 7.4What's new in PHP 7.4
What's new in PHP 7.4
 
Codeception: introduction to php testing (v2 - Aberdeen php)
Codeception: introduction to php testing (v2 - Aberdeen php)Codeception: introduction to php testing (v2 - Aberdeen php)
Codeception: introduction to php testing (v2 - Aberdeen php)
 
php 7.4 for word press developers
php 7.4 for word press developersphp 7.4 for word press developers
php 7.4 for word press developers
 
Codeception: introduction to php testing
Codeception: introduction to php testingCodeception: introduction to php testing
Codeception: introduction to php testing
 
PHP - Programming language war, does it matter
PHP - Programming language war, does it matterPHP - Programming language war, does it matter
PHP - Programming language war, does it matter
 
Guidelines php 8 gig
Guidelines php 8 gigGuidelines php 8 gig
Guidelines php 8 gig
 
Php 7 - YNS
Php 7 - YNSPhp 7 - YNS
Php 7 - YNS
 
PHP 5.4 - Begin your love affair with traits
PHP 5.4 - Begin your love affair with traitsPHP 5.4 - Begin your love affair with traits
PHP 5.4 - Begin your love affair with traits
 
Api details for american syscorp
Api details for american syscorpApi details for american syscorp
Api details for american syscorp
 
API Details For Ascitconsultancyservices.com
API Details For Ascitconsultancyservices.comAPI Details For Ascitconsultancyservices.com
API Details For Ascitconsultancyservices.com
 
Zend Framework Workshop
Zend Framework WorkshopZend Framework Workshop
Zend Framework Workshop
 

Recently uploaded

Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - InfographicHr365.us smith
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio, Inc.
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityNeo4j
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providermohitmore19
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software DevelopersVinodh Ram
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...Christina Lin
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfkalichargn70th171
 
What is Binary Language? Computer Number Systems
What is Binary Language?  Computer Number SystemsWhat is Binary Language?  Computer Number Systems
What is Binary Language? Computer Number SystemsJheuzeDellosa
 

Recently uploaded (20)

Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - Infographic
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
EY_Graph Database Powered Sustainability
EY_Graph Database Powered SustainabilityEY_Graph Database Powered Sustainability
EY_Graph Database Powered Sustainability
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software Developers
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
 
What is Binary Language? Computer Number Systems
What is Binary Language?  Computer Number SystemsWhat is Binary Language?  Computer Number Systems
What is Binary Language? Computer Number Systems
 

Php7

  • 1. PHP 7 Introduction Speaker: Vo Hoang Long - Web Developer <vlong@yahoo-corp.jp> Company: Techbase VietNam
  • 2. $agenda  Brief of PHP 7  New PHP Engine  Benchmark speed PHP 7 vs PHP 5  Some new things in PHP 7  Setup environment to testing PHP 7  Quick view about CVE-201504024
  • 3. Brief of PHP 7 The current stable release uses the version number PHP 5.6. After some dispute the development team decided they would omit the PHP 6 name for the next major release. PHP 6 already existed in the past as an experimental project but never reached the production phase. To prevent users from mixing up the former attempt with the latest development, the new major release will run under the name of PHP 7. It released in 03 Dec 2015
  • 4. The New Zend Engine • The current PHP 5.X series use Zend Engine II that enhanced the funtionality of the initial engine and adds an extensible object model and a significant performance enhancement to the language. • PHP 7 receives a brand new version of the engine coming under the code name of PHP#NG (Next Generation).
  • 5. Benchmark PHP 7 vs PHP 5 • The development team of PHPNG refactored the Zend Engine, remarkably optimized memory usage and added just-in-time compilation (JIT) which allows compilation at run time rather than prior to execution. • The results? You can see the performance benchmarks provided by the Zend Performance Team below. By using PHP 7 not only your code will be executed faster but you will also need fewer servers to serve the same amount of users.
  • 6.
  • 7.
  • 9. Some new things in PHP 7
  • 10. Uniform Variable Syntax  Code demo  Read more : https://wiki.php.net/rfc/uniform_variable_syntax
  • 11. Exceptions in the engine  Code demo  Read more : https://wiki.php.net/rfc/engine_exceptions_for_php7
  • 12. Combined Comparison (Spaceship) Operator  Code demo  Read more : https://wiki.php.net/rfc/combined-comparison-operator
  • 13. Combined Comparison (Spaceship) Operator  Code demo  Read more : https://wiki.php.net/rfc/combined-comparison-operator
  • 14. Null Coalesce Operator  Code demo  Read more : https://wiki.php.net/rfc/isset_ternary
  • 15. Null Coalesce Operator  Code demo  Read more : https://wiki.php.net/rfc/isset_ternary
  • 16. Group Use Declarations  Code demo  Read more : https://wiki.php.net/rfc/group_use_declarations
  • 17. Anonymous classes  Code demo  Read more : http://php.net/manual/en/language.oop5.anonymous.php
  • 18. Return Type Declarations Code demo  Read more : https://wiki.php.net/rfc/return_types
  • 19. Setup environment to testing PHP 7 • Install Vagrant and Virtualbox • Then: $ git clone https://github.com/rlerdorf/php7dev.git $ cd php7dev $ vagrant up ... (takes a bit - it is downloading 1.5G) $ vagrant ssh • It will NAT, DHCP and also has a fixed address of 192.168.7.7 • http://192.168.7.7/ will show you the PHP 7 phpinfo() page • View more : github.com/rlerdorf/php7dev
  • 20. CVE-201504024 • Vulnerability CVE - 2015-4024 code is considered serious when allowing an attacker perform denial-of-service attack ( DoS ) caused major losses to the server with a small code snippet . If a system is equipped botnet using this strategy , the damage caused would be terrible . • CVE - 2015-4024 was reported by a security researcher at Baidu , China , based on logic bug in the HTTP header analysis of PHP , which if created a special HTTP header section , you can push CPU of the server is up 100 % makes all other functions become paralyzed .
  • 21. PHP version has error PHP 5.6.(<9) PHP 5.5.(<25) 5.4.(<41) 5.3.* 5.2.*
  • 22. What is problem ? Content-Disposition: form-data; name="file"; filename="test.txt” Content-Type: application/octet-stream Content-Disposition: form-data; name="file"; filename="s a a a a" Content-Type: application/octet-stream <?php phpinfo();?>
  • 24. Q&A