SlideShare a Scribd company logo
Last Month in PHP
April 2017
Kansas City PHP User Group
PHOTOGRAPH BY JOEL SARTORE, NATIONAL GEOGRAPHIC PHOTO ARK
PHP Patch Releases
PHP 7.0.18
● Bug fixes
● php.net/ChangeLog-7.php#7.0.18
PHP 7.1.4
● Bug fixes
● php.net/ChangeLog-7.php#7.1.4
Upcoming Features in PHP RFC
Allow Abstract Function Override
● Target: 7.2
● tl;dr: One cannot currently override an
inherited abstract method from an abstract
class; but one can override an inherited
method from a parent class. This allows
for abstract method override
● wiki.php.net/rfc/allow-abstract-function-ove
rride
This Works
class A {
function bar(stdClass $x){}
}
class B extends A {
function bar($x): stdClass{}
}
This Does Not Work, But Will in 7.2
abstract class A {
abstract function bar(stdClass $x);
}
abstract class B extends A {
abstract function bar($x): stdClass;
}
class C extends B {
function bar($x): stdClass{}
}
// Fatal error: Can't inherit abstract function
A::bar()
// (previously declared abstract in B)
CMSes: Drupal
Drupal 8.3
● Big Pipe is now stable!
● Improved editing
● Improved site building & administrative features
● Improved web services (REST, API, etc)
● Improved performance & scalability
● BC Break: All serialized output were strings, now are integers/bools when
appropriate
● drupal.org/blog/drupal-8-3-0
● drupal.org/project/drupal/releases/8.3.0
CMSes: Drupal
Drupal 2.7.8 & 8.3.1 - Upgrade!
● Fixes security vulnerabilities
○ CVE-2017-6919
○ drupal.org/SA-CORE-2017-002
CMSes: WordPress
WordPress 4.7.4
● Contains 47 maintenance fixes:
● wordpress.org/news/2017/04/wordpress-4-7-4
Frameworks - CakePHP
CakePHP 2.9.[7, 8], 3.3.16, 3.4.5
● 2.9.7
○ Bug fixes: bakery.cakephp.org/2017/04/01/cakephp_297_released.html
● 2.9.8
○ Bug fixes & new features: bakery.cakephp.org/2017/04/21/cakephp_298_released.html
● 3.3.16 & 3.4.5
○ Bug fixes: bakery.cakephp.org/2017/04/06/cakephp_345_3316_released.html
Frameworks - Laravel
Laravel 5.4.[17, 18, 19, 20, 21]
● Laravel 5.4
○ Maintenance releases
○ Interesting additions to Collections
■ times()
■ mapToGroups()
○ github.com/laravel/framework/blob/5.4/CHANGELOG-5.4.md
Frameworks - Symfony
Symfony 3.2.7, 2.8.19, 2.7.26
● Maintenance Releases
○ symfony.com/blog/symfony-2-7-26-released
○ symfony.com/blog/symfony-2-8-19-released
○ symfony.com/blog/symfony-3-2-7-released
Frameworks - Zend
ZF 3.0
● No updates
PHP: The Right Way
● No updates in April
phptherightway.com
● Note: Every open-source project can use
your help with documentation. What are
you waiting for?
PHP Conferences
PHP Unicorn Online
● May 4 - Online
● phpunicorn.com
● UG discount code: REDACTED
PHP[TEK] 2017
● May 24-26 - Atlanta, GA
● tek.phparch.com
Day Camp for Developers
● June 2 - Online
● daycamp4developers.com
CakeFest 2017
● June 8-11 - New York, NY
● cakefest.org
PHP Conferences
Django Girls KC
● July 21-22 - Kansas City, MO
● djangogirls.org/kansascity
LaraCon
● July 25-26 - New York, NY
● laracon.us
NE PHP/UX Conference
● Aug 9-11 - Prince Edward Island, CA
● 2017.northeastphp.org
Pacific Northwest PHP
● Sept 7-9 - Seattle, WA
● CFP until May 15
● pnwphp.com
Nomad PHP (Online) - May 18
Nomad PHP EU - 01:00 PM CDT
Code Coverage for Total Security in
Application Migrations!
● Dana Luther (@danaluther)
● nomadphp.com/code-coverage-total-secur
ityin-application-migrations
Nomad PHP US - 08:00 PM CDT
MySQL: Analysis, Understanding, and
Optimization of Queries
● Michael Moussa (@michaelmoussa)
● nomadphp.com/mysql-analysis-understan
ding-andoptimization-queries
Next Month in KCPHPUG
● Call for papers!

More Related Content

PDF
Types - slice, map, new, make, struct - Gopherlabs
PDF
Openshift: Deployments for the rest of us
PDF
Terraform & IaC - Nam CXN
PDF
Decision making - for loop , nested loop ,if-else statements , switch in goph...
PDF
[JCConf 2017] Reactive Programming with Reactor
PPTX
Making graph in R
PPTX
Mining
PDF
Last Month in PHP - April 2018
Types - slice, map, new, make, struct - Gopherlabs
Openshift: Deployments for the rest of us
Terraform & IaC - Nam CXN
Decision making - for loop , nested loop ,if-else statements , switch in goph...
[JCConf 2017] Reactive Programming with Reactor
Making graph in R
Mining
Last Month in PHP - April 2018

Similar to Last Month in PHP - April 2017 (20)

PDF
Last Month in PHP - February 2017
PDF
Last Month in PHP - March 2017
PDF
Last Month in PHP - June 2016
PDF
Last 2 Months in PHP - July & August 2016
PDF
Last Month in PHP - October 2016
PDF
2019 January - The Month in PHP
PDF
Lately in php - 2019 May 4
PDF
Last Month in PHP - May 2016
PPTX
Php 5.6 vs Php 7 performance comparison
PDF
Last 2 Months in PHP - January 2018
PDF
Last Month in PHP - March 2018
PDF
Last Month in PHP - November 2016
PDF
PHP 7X New Features
PDF
2018 September - The Month in PHP
PDF
Last train to php 7
PDF
Php 5.6 From the Inside Out
PDF
Last Month in PHP - September 2016
PPTX
A brief to PHP 7.3
PDF
More on bpftrace for MariaDB DBAs and Developers - FOSDEM 2022 MariaDB Devroom
PDF
Php 7.2 compliance workshop php benelux
Last Month in PHP - February 2017
Last Month in PHP - March 2017
Last Month in PHP - June 2016
Last 2 Months in PHP - July & August 2016
Last Month in PHP - October 2016
2019 January - The Month in PHP
Lately in php - 2019 May 4
Last Month in PHP - May 2016
Php 5.6 vs Php 7 performance comparison
Last 2 Months in PHP - January 2018
Last Month in PHP - March 2018
Last Month in PHP - November 2016
PHP 7X New Features
2018 September - The Month in PHP
Last train to php 7
Php 5.6 From the Inside Out
Last Month in PHP - September 2016
A brief to PHP 7.3
More on bpftrace for MariaDB DBAs and Developers - FOSDEM 2022 MariaDB Devroom
Php 7.2 compliance workshop php benelux
Ad

More from Eric Poe (14)

PDF
2018 November - The Month in PHP
PDF
2018 October - The Month in PHP
PDF
2018 July - The Month in PHP
PDF
Last Month in PHP - May 2018
PDF
Composer yourself: a reintroduction to composer
PDF
Last Month in PHP - June through Mid-July 2017
PDF
Last Month in PHP - December 2016
PPTX
Last Month in PHP - April 2016
PPTX
Last Month in PHP - March 2016
PPTX
Last Month in PHP - February 2016
PPTX
Last Month in PHP - January 2016
PDF
Last Month in PHP - December 2015
PDF
PHP7 - Scalar Type Hints & Return Types
PPTX
Intro to TDD Using PHPUnit: A FizzBuzz Kata
2018 November - The Month in PHP
2018 October - The Month in PHP
2018 July - The Month in PHP
Last Month in PHP - May 2018
Composer yourself: a reintroduction to composer
Last Month in PHP - June through Mid-July 2017
Last Month in PHP - December 2016
Last Month in PHP - April 2016
Last Month in PHP - March 2016
Last Month in PHP - February 2016
Last Month in PHP - January 2016
Last Month in PHP - December 2015
PHP7 - Scalar Type Hints & Return Types
Intro to TDD Using PHPUnit: A FizzBuzz Kata
Ad

Recently uploaded (20)

PDF
Approach and Philosophy of On baking technology
PPTX
OMC Textile Division Presentation 2021.pptx
PDF
Mushroom cultivation and it's methods.pdf
PPTX
Machine Learning_overview_presentation.pptx
PDF
A comparative analysis of optical character recognition models for extracting...
PDF
Getting Started with Data Integration: FME Form 101
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
cloud_computing_Infrastucture_as_cloud_p
PDF
Accuracy of neural networks in brain wave diagnosis of schizophrenia
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
TLE Review Electricity (Electricity).pptx
Approach and Philosophy of On baking technology
OMC Textile Division Presentation 2021.pptx
Mushroom cultivation and it's methods.pdf
Machine Learning_overview_presentation.pptx
A comparative analysis of optical character recognition models for extracting...
Getting Started with Data Integration: FME Form 101
Programs and apps: productivity, graphics, security and other tools
MIND Revenue Release Quarter 2 2025 Press Release
Assigned Numbers - 2025 - Bluetooth® Document
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
Encapsulation_ Review paper, used for researhc scholars
cloud_computing_Infrastucture_as_cloud_p
Accuracy of neural networks in brain wave diagnosis of schizophrenia
Digital-Transformation-Roadmap-for-Companies.pptx
Unlocking AI with Model Context Protocol (MCP)
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Advanced methodologies resolving dimensionality complications for autism neur...
Spectral efficient network and resource selection model in 5G networks
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
TLE Review Electricity (Electricity).pptx

Last Month in PHP - April 2017

  • 1. Last Month in PHP April 2017 Kansas City PHP User Group PHOTOGRAPH BY JOEL SARTORE, NATIONAL GEOGRAPHIC PHOTO ARK
  • 2. PHP Patch Releases PHP 7.0.18 ● Bug fixes ● php.net/ChangeLog-7.php#7.0.18 PHP 7.1.4 ● Bug fixes ● php.net/ChangeLog-7.php#7.1.4
  • 3. Upcoming Features in PHP RFC Allow Abstract Function Override ● Target: 7.2 ● tl;dr: One cannot currently override an inherited abstract method from an abstract class; but one can override an inherited method from a parent class. This allows for abstract method override ● wiki.php.net/rfc/allow-abstract-function-ove rride This Works class A { function bar(stdClass $x){} } class B extends A { function bar($x): stdClass{} } This Does Not Work, But Will in 7.2 abstract class A { abstract function bar(stdClass $x); } abstract class B extends A { abstract function bar($x): stdClass; } class C extends B { function bar($x): stdClass{} } // Fatal error: Can't inherit abstract function A::bar() // (previously declared abstract in B)
  • 4. CMSes: Drupal Drupal 8.3 ● Big Pipe is now stable! ● Improved editing ● Improved site building & administrative features ● Improved web services (REST, API, etc) ● Improved performance & scalability ● BC Break: All serialized output were strings, now are integers/bools when appropriate ● drupal.org/blog/drupal-8-3-0 ● drupal.org/project/drupal/releases/8.3.0
  • 5. CMSes: Drupal Drupal 2.7.8 & 8.3.1 - Upgrade! ● Fixes security vulnerabilities ○ CVE-2017-6919 ○ drupal.org/SA-CORE-2017-002
  • 6. CMSes: WordPress WordPress 4.7.4 ● Contains 47 maintenance fixes: ● wordpress.org/news/2017/04/wordpress-4-7-4
  • 7. Frameworks - CakePHP CakePHP 2.9.[7, 8], 3.3.16, 3.4.5 ● 2.9.7 ○ Bug fixes: bakery.cakephp.org/2017/04/01/cakephp_297_released.html ● 2.9.8 ○ Bug fixes & new features: bakery.cakephp.org/2017/04/21/cakephp_298_released.html ● 3.3.16 & 3.4.5 ○ Bug fixes: bakery.cakephp.org/2017/04/06/cakephp_345_3316_released.html
  • 8. Frameworks - Laravel Laravel 5.4.[17, 18, 19, 20, 21] ● Laravel 5.4 ○ Maintenance releases ○ Interesting additions to Collections ■ times() ■ mapToGroups() ○ github.com/laravel/framework/blob/5.4/CHANGELOG-5.4.md
  • 9. Frameworks - Symfony Symfony 3.2.7, 2.8.19, 2.7.26 ● Maintenance Releases ○ symfony.com/blog/symfony-2-7-26-released ○ symfony.com/blog/symfony-2-8-19-released ○ symfony.com/blog/symfony-3-2-7-released
  • 10. Frameworks - Zend ZF 3.0 ● No updates
  • 11. PHP: The Right Way ● No updates in April phptherightway.com ● Note: Every open-source project can use your help with documentation. What are you waiting for?
  • 12. PHP Conferences PHP Unicorn Online ● May 4 - Online ● phpunicorn.com ● UG discount code: REDACTED PHP[TEK] 2017 ● May 24-26 - Atlanta, GA ● tek.phparch.com Day Camp for Developers ● June 2 - Online ● daycamp4developers.com CakeFest 2017 ● June 8-11 - New York, NY ● cakefest.org
  • 13. PHP Conferences Django Girls KC ● July 21-22 - Kansas City, MO ● djangogirls.org/kansascity LaraCon ● July 25-26 - New York, NY ● laracon.us NE PHP/UX Conference ● Aug 9-11 - Prince Edward Island, CA ● 2017.northeastphp.org Pacific Northwest PHP ● Sept 7-9 - Seattle, WA ● CFP until May 15 ● pnwphp.com
  • 14. Nomad PHP (Online) - May 18 Nomad PHP EU - 01:00 PM CDT Code Coverage for Total Security in Application Migrations! ● Dana Luther (@danaluther) ● nomadphp.com/code-coverage-total-secur ityin-application-migrations Nomad PHP US - 08:00 PM CDT MySQL: Analysis, Understanding, and Optimization of Queries ● Michael Moussa (@michaelmoussa) ● nomadphp.com/mysql-analysis-understan ding-andoptimization-queries
  • 15. Next Month in KCPHPUG ● Call for papers!