search
HomeBackend DevelopmentPHP TutorialIntroduction to new content in PHP 7

Introduction to new content in PHP 7

Although the summer of 2015 is not hot, it is hotter than any other year in the summer of Internet technology.
The bad news of successive failures of NetEase, Alipay, Ctrip and many cloud storage vendors at the end of May has just ended. In early June, we ushered in two good news in the programming language world. The first one was the release of Swift 2.0 and its open source. The other thing is that the PHP 7 alpha version is officially released. These two major events are historical events that can be recorded in the corresponding programming languages.
Let’s not talk about Swift 2.0 for now. The focus of this article is to take everyone to see PHP 7, which has been polished by Brother Niao and other great masters for 2 years, to see if it is really as domineering as mentioned before. As well as testing the compatibility of existing software and extensions.
The installation of PHP7 is really backward compatible. Download, unzip, use the previous configuration commands, and press Enter all the way without any sense of disobedience. In order not to affect the operation of the existing environment, all directories have been specially opened.
The configuration parameters are as follows:
--prefix=/usr/local/php7 --with-config-file-path=/usr/local/php7/etc --enable-fpm --with-fpm-user=www --with-fpm-group=www --with-mysqli --with-pdo-mysql --with-iconv-dir --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --enable-mbregex --enable-mbstring --with-mcrypt --enable-ftp --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --without-pear --with-gettext --disable-fileinfo --enable-maintainer-zts<br>After installation, make a soft link: <br><precourier new margin-top:0px margin-bottom:10px line-height:20px word-break:break-all word-wrap:break-word white-space:pre-wrap background-color:rgb>ln -s /usr/local/php7/bin/php /usr/bin/php7 ln -s /usr/local/php7/bin/php-config /usr/bin/php7-config ln -s /usr/local/php7/bin/phpize /usr/bin/php7ize ln -s /usr/local/php7/sbin/php-fpm /usr/sbin/php7-fpm<br>php7 -v We saw the familiar prompt: <br><precourier new margin-top:0px margin-bottom:10px line-height:20px word-break:break-all word-wrap:break-word white-space:pre-wrap background-color:rgb>[root@localhost test]# php7 -v PHP 7.0.0alpha1 (cli) (built: Jun 13 2015 11:33:39) Copyright (c) 1997-2015 The PHP Group Zend Engine v3.0.0-dev, Copyright (c) 1998-2015 Zend Technologies<br>The first thing to do is the performance evaluation, evaluation model, Capital Online Cloud Host, 4 Core CPU Intel(R) Xeon(R) CPU E5-2680 0 @ 2.70GHz, memory 4G, operating system Centos 6.5. <br>I randomly wrote three pieces of programs: <br>The first piece generates an array of 600,000 elements, and determines whether the key exists by searching for the key. <br><precourier new margin-top:0px margin-bottom:10px line-height:20px word-break:break-all word-wrap:break-word white-space:pre-wrap background-color:rgb><?php $a = array(); for($i=0;$i<600000;$i&#43;&#43;){ $a[$i] = $i; } foreach($a as $i) { array_key_exists($i, $a); }
First up is PHP version 5.3.17.
[root@localhost test]# time php search_by_key.php real 0m0.389s user 0m0.337s sys 0m0.051s [root@localhost test]# time php search_by_key.php real 0m0.378s user 0m0.308s sys 0m0.062s [root@localhost test]# time php search_by_key.php real 0m0.378s user 0m0.317s sys 0m0.061s<br>The second is the PHP7 version. <br><precourier new margin-top:0px margin-bottom:10px line-height:20px word-break:break-all word-wrap:break-word white-space:pre-wrap background-color:rgb>[root@localhost test]# time php7 search_by_key.php real 0m0.139s user 0m0.055s sys 0m0.048s [root@localhost test]# time php7 search_by_key.php real 0m0.089s user 0m0.058s sys 0m0.030s [root@localhost test]# time php7 search_by_key.php real 0m0.097s user 0m0.065s sys 0m0.022s<br> As soon as it was launched, it lived up to its reputation. The response time was reduced to 1/4 of the original when running under PHP7. Really awesome! <br>Then I have to try two more. The second paragraph is still the same method as above, but because it is slower, it becomes an array of 60,000 elements to find the value. <br>The code is as follows: <br><precourier new margin-top:0px margin-bottom:10px line-height:20px word-break:break-all word-wrap:break-word white-space:pre-wrap background-color:rgb><?php $a = array(); for($i=0;$i<60000;$i&#43;&#43;){ $a[$i] = $i; } foreach($a as $i) { array_search($i, $a); } [root@localhost test]# time php search_by_val.php real 0m24.296s user 0m24.184s sys 0m0.025s [root@localhost test]# time php search_by_val.php real 0m25.523s user 0m25.317s sys 0m0.026s [root@localhost test]# time php search_by_val.php real 0m26.026s user 0m25.478s sys 0m0.092s
The waiting time always feels very long. Three tests took more than 75 seconds. Next, PHP 7 comes on the scene.
[root@localhost test]# time php7 search_by_val.php real 0m3.439s user 0m3.410ssys 0m0.008s [root@localhost test]# time php7 search_by_val.php real 0m3.426suser 0m3.409s sys 0m0.007s [root@localhost test]# time php7 search_by_val.php real 0m3.616suser 0m3.400s sys 0m0.018s
Damn it, is there any! The speed has been increased by nearly 7 times.
The author's excitement is beyond words, and he has created a relatively efficient prime number algorithm. Calculate the number of prime numbers within 2,000,000.
This time we will start with PHP7.
[root@localhost test]# time php7 prime_v3.php 2000000 prime number count under 2000000 is :148933 real 0m1.211s user 0m1.191s sys 0m0.015s [root@localhost test]# time php7 prime_v3.php 2000000 prime number count under 2000000 is :148933 real 0m1.221s user 0m1.207s sys 0m0.010s [root@localhost test]# time php7 prime_v3.php 2000000 prime number count under 2000000 is :148933 real 0m1.220s user 0m1.201s sys 0m0.015s
The speed is stable at 1.2 S
As for PHP 5.3, the gap this time is smaller than last time, but the speed of PHP7 is also between 3 and 4 times that of it.
[root@localhost test]# time php prime_v3.php 2000000 prime number count under 2000000 is :148933 real 0m4.425s user 0m4.380s sys 0m0.023s [root@localhost test]# time php prime_v3.php 2000000 prime number count under 2000000 is :148933 real 0m4.457s user 0m4.414s sys 0m0.032s [root@localhost test]# time php prime_v3.php 2000000 prime number count under 2000000 is :148933 real 0m4.464s user 0m4.399s sys 0m0.046s
At this point, we can basically explain the problem. These codes do not use complex function libraries, nor do they require a lot of network and IO, but their performance has been optimized by at least 3 times. This is really a historic progress. In our past performance evaluations, language-level performance was often ignored. Why do we say this? For example, in XHProf, there is a special option, XHPROF_FLAGS_NO_BUILTINS, which is used to not analyze built-in functions or internal functions. Such as array, date, etc. functions. Because everyone often misses the room for improvement in this area, and of course, ordinary people cannot improve in this area, so HHVM was created and inspired today's PHP 7.
If you want to get the algorithm for finding prime numbers, please follow the public account of Youcai.com and enter the keyword "prime number" to get it.
After a round of testing, I aroused my interest in learning more about PHP 7. I wanted to see how extensions and some common frameworks are supported, so I made the following four tests.
First of all, XHProf. As an architect who focuses on performance optimization, XHProf is really one of the tools that can locate program performance problems in minutes. PHP 7 is coming, and XHProf cannot be lost. Looking at the current version, it is still in 2013. Yes, I had to download a copy from github, and the result was that phpize was still fine,

configure was fine, and

make was a tragedy. It seems that the underlying data structure has changed. I look forward to Brother Bird’s upgrade.

Since XHProf cannot be used, can XHProf OneAPM in the cloud be used? Recently, OneAPM has been used more and more. There is no need to bury the code yourself or too much configuration. The commercial version is different. The installation is also a tragedy. You have to report it to their boss. If you can't solve it, hire Brother Niao as a PHP technical consultant. I guarantee that you can get it done in minutes.

Regarding extensions, I don’t have the confidence to continue testing. Here are two commonly used things. One is WordPress. Although the website has been harmonized, everyone on earth knows it. The other one is ThinkPHP, which is the most widely used PHP development framework in China. It is definitely the number one, not one of them. The author is also a fan of TP.
Should we praise these two software for doing well? Should I praise PHP 7 for its good compatibility? I don’t know. Anyway, I saw that it was initially normal.

Wordpress backend runs normally when PHP 7 is used as FastCGI backend.

ThinkPHP latest version 3.2.3 runs normally under PHP 7.
Okay, after spending a weekend afternoon playing around with PHP 7, I became a fan of PHP7 and saw a brighter future for PHP. I, PHP, will continue to sweep the Chinese Internet technology industry, unrivaled, and PHP technicians will be more For shortage. I also look forward to more PHP technicians not only learning a language and grammar, but standing at a higher level, doing white-box operation and maintenance, focusing on performance optimization, becoming full-stack engineers, earning high salaries, and marrying white people. Rich and beautiful, realize your ideal in life.

Reference source:
PHP 7 new content introduction
http://www.lai18.com/content/434544.html

The above is an introduction to the new content of PHP 7, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
The Continued Use of PHP: Reasons for Its EnduranceThe Continued Use of PHP: Reasons for Its EnduranceApr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python: Exploring Their Similarities and DifferencesPHP and Python: Exploring Their Similarities and DifferencesApr 19, 2025 am 12:21 AM

PHP and Python are both high-level programming languages ​​that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.