PHP 7.4 Gets Foreign Function Interface
Written by Alex Armstrong   
Monday, 02 December 2019

The latest version of PHP has been released with improvements including typed properties, arrow functions, and a foreign function interface. 

PHP's migration from a simple scripting language designed to build web pages programatically to a very general server side web language means that this open-source runtime now serves eight out of ten websites using server-side code. 

phplogo

PHP 7.4.0 comes with numerous improvement, starting with typed properties meaning that class properties now support type declarations. Arrow function support has been added, providing a shorthand syntax for defining functions with implicit by-value scope binding. This is designed to make code using simple closures easier to read and understand.

Limited return type covariance and argument type contravariance support has been added, though full variance support is only available if autoloading is used. Support has also been added for unpacking inside arrays. Other improvements include the ability to separate numeric literals by using an underscore between digits; weak references so you can retain a reference to an object that does not prevent the object from being destroyed; and exceptions from __toString() are now permitted. Previously this resulted in a fatal error.

The performance of this version of PHP has been improved, partially due to support for Opcache preloading code. With an opcode cache, files are compiled once (on the first request that uses them), and are then stored in shared memory.  Their contents are then permanently available to all subsequent requests that will be served by that server. All the functions and classes defined in these files will be available to requests out of the box, exactly like internal entities (e.g. strlen() or Exception). This does mean the files can't be changed without a server restart.

PHP 7.4 is available for download from the PHP downloads page.    

phplogo

More Information

PHP Website

Related Articles

PHP Is Best?

What PHP Does

PHP Variables and Expressions for Complete Beginners

Object-oriented HTML Generation In PHP

Peachpie Open Source PHP to .NET Compiler

PHP 5.6 Released

PHP Gets A Formal Specification 

The Next Version Of PHP And The Status Of PHPng

PHP Next Generation Project Announced       

The Reason For The Weird PHP Function Names       

Zend Optimizer+ For PHP?

More Information

some text

Related Articles

 

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

Banner


Eclipse JKube 1.16 Goes GA
08/04/2024

Eclipse JKube makes deploying your Java application to a Kubernetes cluster a breeze. Let's find out what's new.



Supersimple - Deep Insights From Data
02/04/2024

Announcing $2.2 Million in pre-seed funding, the Estonian startup Supersimple has launched an AI-native data analytics platform which combines a semantic data modeling layer with the ability to answer [ ... ]


More News

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Monday, 02 December 2019 )