2022 PHP Usage Statistics

By Dillon Smart · · · 2 Comments

PHP Usage

PHP: Hypertext Preprocessor is the most popular language used on the web. Around 77.6% of all websites run PHP in some way as of April 2022. PHP has been the driving force behind the growth of the web, but is it slowly dying? Let’s look at some PHP usage statistics.

Why is PHP so popular?

PHP first arrived on the scene in 1995 and it quickly became the go-to language for building web pages. The language grew in popularity from the ease of integrating PHP code into HTML.

PHP has a number of built-in functions that help speed up development. With the release of frameworks that included built-in libraries and tools, the speed of development drastically increased.

Did you know Facebook was first built on PHP 4.3? PHP 4.3 was the first version that introduced the PHP command-line interface (CLI).

In 2003, WordPress was released which made it easier to create blogs and websites. WordPress now powers over 37% of the entire web alone!

PHP usage

PHP Version Usage

As of writing, PHP 8.1 is the latest version released. Below are some stats that show the usage statistics for each PHP version as of April 2022.

PHP Version Usage

As you can see, there is an alarming amount of websites that use older unsupported versions of PHP.

PHP version 4 still powers 0.2% of websites. That might not sound like a lot, however, that equates to around 18,000 websites are using the same version of PHP as Facebook used back in 2004!

In total, the statistics show that around 872,820,000 websites are running unsupported versions of PHP.

It’s important to keep your website updated with the latest security patches, Learn how to change your PHP version.

PHP usage over the years

PHP began to see a rise in usage between 2011 and 2018, before a slow drop off to the present day. This rise can possibly be attributed to the release of Laravel, the most popular PHP Framework, and Composer, the Dependency Manager for PHP.

PHP usage statistics vs other service side languages:

Most Popular Server Side Languages

Laravel usage statistics: 

Laravel Usage Statistics

Conclusion

Looking over the statistics, it’s clear PHP is still a very popular programming language, and it doesn’t look like it’s going away any time soon. With the help of WordPress and Laravel, PHP has been cemented in the foundations of the web.

Sources: 

W3techs.com

Builtwith.com

LaravelPHPWordPress

2 Comments

Why Use Symfony for Enhanced Web Application Development? - DesignCoral

[…] the need grows. Daily new websites for goods and services flood the market. Research indicates that 77% of websites are built using PHP […]

List of programming languages used for Web Development - IKnowThatNow

[…] PHP is used by around 77.6% of all websites, making it the most popular server-side language used on the web. […]

Was this helpful? Leave a comment!

This site uses Akismet to reduce spam. Learn how your comment data is processed.

How to setup a remote MySQL database connection in PHPStorm

Updated 1st October 2023

PHPStorm is packed full of features designed to make the development process for PHP developers efficient and streamlined. Although Jetbrains have a standalone product for interacting with databases, named DataGrip, PHPStrom ships with the Database Tools and SQL plugin. This tools is powerful, integrated directly within the IDE, and provides a convinient way to intract

WordPress wp-admin redirects to HTTPS

Updated 18th May 2021

Does your WordPress wp-admin redirect to https rather than http? Below is a simple tutorial to stop this from happening. First, check the siteurl in the wp_options table within your database. Make sure the option_value is your site address with http:// not https://. If your siteurl is set as http:// the try the following. Open

Laravel php artisan make:auth command not defined

Updated 11th August 2022

Laravel 6.0 LTS came with a lot of changes to the framework, apart from moving the the new Semantic Versioning, Laravels famous php artisan make:auth command was dropped. php artisan make:auth Before the Laravel make:auth command would create all the Migrations, Models, Controllers and Routes needed to easily setup an authenticatable application in seconds. However,