Home headlines Both are dynamic languages, why is PHP so much faster than Python? Reason analysis

Both are dynamic languages, why is PHP so much faster than Python? Reason analysis

Oct 31, 2019 am 11:33 AM
php python

Let’s take a look at the specific data pictures first:

Both are dynamic languages, why is PHP so much faster than Python? Reason analysis

Let’s analyze:

I I read a lot of people’s answers!

Answer 1:

In fact, it’s not that Python is slow, but that PHP is too fast. Just like you can’t say that Kobe is worse, it’s just that Jordan is too good.

Both are dynamic languages, why is PHP so much faster than Python? Reason analysis

Answer 2:

C and Python are faster than C of course. Most of the PHP functions used in this test are provided by the language itself, and these functions are written in C. Python On the contrary, most functions are written in Python. This test only proves that PHP is faster than Python for this feature. It cannot explain the speed of the language itself. If you want to prove the speed of the language itself, the test code should run in the code of this language most of the time.

Answer 3:

It is faster to adjust C in Python. You need to use a high-performance place to independently make C modules. In contrast, nodejs can only use tcp, stdio and other methods to communicate with the c of another process. (If there are other methods, please point out the performance, whether to use c or not, there is a big difference.

Both are dynamic languages, why is PHP so much faster than Python? Reason analysis

PHP and Python (CPython) currently do not have JIT, so PHP can only win. The performance of the underlying VM is better than that of Python.

In fact, the official PHP language development team has been optimizing the performance of the VM since the 5.4 era. The PHP7 version has greatly transformed the underlying data structure, which is improved compared to 5.6 More than 1 times the performance. Compared with Python 2, Python 3 is regressing in performance.

In intensive computing scenarios, static languages ​​and dynamic languages ​​with JIT will have great advantages. You can see that Node The test results of .js (based on V8 engine) far exceed those of PHP and Python. The calculation instructions of the former are directly executed as CPU instructions, while the calculations of the latter are actually high-level instructions on the VM, and the implementation principles are very different.

However, PHPers, don’t be discouraged. The official PHP development team is already developing JIT features. Maybe the next version of PHP will carry JIT, which will be on the same order of magnitude as Node.js in intensive computing scenarios.

Both are dynamic languages, why is PHP so much faster than Python? Reason analysis

In addition, PHP, Python, and Node.js are all used to write application software, and the computing performance of the language is not that important. If your program is sensitive to performance, C /C /GO/Rust These static programming languages ​​are the best choice.

Statement of this Website
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

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1663
14
PHP Tutorial
1263
29
C# Tutorial
1236
24
PHP and Python: Different Paradigms Explained PHP and Python: Different Paradigms Explained Apr 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.

Choosing Between PHP and Python: A Guide Choosing Between PHP and Python: A Guide Apr 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 Python: A Deep Dive into Their History PHP and Python: A Deep Dive into Their History Apr 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.

PHP's Impact: Web Development and Beyond PHP's Impact: Web Development and Beyond Apr 18, 2025 am 12:10 AM

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

PHP vs. Python: Use Cases and Applications PHP vs. Python: Use Cases and Applications Apr 17, 2025 am 12:23 AM

PHP is suitable for web development and content management systems, and Python is suitable for data science, machine learning and automation scripts. 1.PHP performs well in building fast and scalable websites and applications and is commonly used in CMS such as WordPress. 2. Python has performed outstandingly in the fields of data science and machine learning, with rich libraries such as NumPy and TensorFlow.

The Continued Use of PHP: Reasons for Its Endurance The Continued Use of PHP: Reasons for Its Endurance Apr 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.

Golang vs. Python: Key Differences and Similarities Golang vs. Python: Key Differences and Similarities Apr 17, 2025 am 12:15 AM

Golang and Python each have their own advantages: Golang is suitable for high performance and concurrent programming, while Python is suitable for data science and web development. Golang is known for its concurrency model and efficient performance, while Python is known for its concise syntax and rich library ecosystem.

Golang vs. Python: Performance and Scalability Golang vs. Python: Performance and Scalability Apr 19, 2025 am 12:18 AM

Golang is better than Python in terms of performance and scalability. 1) Golang's compilation-type characteristics and efficient concurrency model make it perform well in high concurrency scenarios. 2) Python, as an interpreted language, executes slowly, but can optimize performance through tools such as Cython.