


The main new features of PHP 7.0 that I compiled, the new features of php7.0_PHP tutorial
The main new features of PHP 7.0 that I compiled, the new features of php7.0
So far, PHP has officially released the RC5 version of php7, which is expected to be released around November Release the first official version! Now, the major features of php7 have definitely been finalized and there will be no more changes. The iterations of some subsequent versions are mainly bug fixes, optimizations and the like. Let’s talk about the new features of php7.0 that we have been looking forward to.
1. Scalar parameter type declaration
Now supports string, integer, float, and bool parameter declarations. Previously, only class names, interfaces, arrays, and Callables were supported
Two styles: forced conversion mode (default) and strict mode
<?php // Coercive mode function sumOfInts(int ...$ints) { return array_sum($ints); } var_dump(sumOfInts(2, '3', 4.1));
2. Return type declaration
<?php function arraysSum(array ...$arrays): array { return array_map(function(array $array): int { return array_sum($array); }, $arrays); } print_r(arraysSum([1,2,3], [4,5,6], [7,8,9]));
3.??Operator
?? is used to replace isset when isset is required. This is a syntactic sugar.
<?php // Fetches the value of $_GET['user'] and returns 'nobody' // if it does not exist. $username = $_GET['user'] ?? 'nobody'; // This is equivalent to: $username = isset($_GET['user']) ? $_GET['user'] : 'nobody'; // Coalescing can be chained: this will return the first // defined value out of $_GET['user'], $_POST['user'], and // 'nobody'. $username = $_GET['user'] ?? $_POST['user'] ?? 'nobody';
4.<=> Comparison operator
It depends on the size of the two expression values, three relationships: = returns 0, < returns -1, > returns 1
<?php // Integers echo 1 <=> 1; // 0 echo 1 <=> 2; // -1 echo 2 <=> 1; // 1 // Floats echo 1.5 <=> 1.5; // 0 echo 1.5 <=> 2.5; // -1 echo 2.5 <=> 1.5; // 1 // Strings echo "a" <=> "a"; // 0 echo "a" <=> "b"; // -1 echo "b" <=> "a"; // 1
5.define supports defining values of array type
php 5.6 already supports CONST syntax to define constants of array classes, and PHP7 supports define syntax.
<?php define('ANIMALS', [ 'dog', 'cat', 'bird' ]); echo ANIMALS[1]; // outputs "cat"
6. Anonymous class
<?php interface Logger { public function log(string $msg); } class Application { private $logger; public function getLogger(): Logger { return $this->logger; } public function setLogger(Logger $logger) { $this->logger = $logger; } } $app = new Application; $app->setLogger(new class implements Logger { public function log(string $msg) { echo $msg; } }); var_dump($app->getLogger());
7. Added the integer division function intdiv
Summary:
PHP 7’s performance breakthrough has become one of the hottest topics recently, and the official PHP 7.0.0 Beta 2 has been released
New Features
Performance improvement: PHP 7 is twice as fast as PHP 5.6
Full and consistent 64-bit support
Removed some old SAPI (Server Side Application Programming Port) and extensions that are no longer supported
New null join operator (??)
Articles you may be interested in:
- Win2008 R2 IIS7 PHP 5.4 environment setup graphic tutorial
- IIS7.5 PHP5.2.17 Mysql5.5.16 Zend3.3.3 under win2008 R2
- Win7 scheduled task scheduled execution of PHP script settings diagram
- Imagick and imagemagick extension tutorial for installing php under windows7
- php-ssh2 extension tutorial for installing php under windows7
- 3 solutions to the PHP error Allowed size memory of 67108864 bytes exhausted
- IIS7, IIS7.5 Solutions to the slowdown of the site after upgrading to PHP5.3
- IIS7 configuration PHP diagram ( IIS7 PHP_5.2.17/PHP_5.3.5)
- win7 64-bit system configuration php latest version development environment (php Apache mysql)
- Invisible character 65279 (utf-8 BOM header) problem in php
- Connecting Oracle database with PHP under Win7 64-bit system
- In-depth analysis of the new features of PHP7.0 (five major new features)

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
