search
HomeBackend DevelopmentPHP TutorialPHP's latest statistics are released: with a market share of 77.2%, it is still the 'preferred programming language” for websites

IT House reported on September 11 that Timo Tijhof, chief engineer of the Wikimedia Foundation, recently published an article revealing the usage data of the PHP language and emphasizing the role of the PHP language on the Internet. IT House compiled the relevant content as follows :

PHP remains the programming language of choice

Timo Tijhof excerpted this from the "Analysis of Programming Languages ​​Used by the Top 10 Million Websites in the World (As of 2023.8)" published by W3 Techs Results, among which:

  • PHP accounts for 77.2%

  • ASP accounts for 6.9%

  • Ruby accounts for 5.4%

PHPs latest statistics are released: with a market share of 77.2%, it is still the preferred programming language” for websites

Content management framework based on PHP

Most public websites It is built using a PHP-based CMS. 8 of the top 12 CMS software are written in PHP. Also based on the above analysis results of W3 Techs, each percentage point represents 100,000 websites among the top 10 million websites.

  • [PHP] WordPress Ecosystem (63%)

  • [Ruby] Shopify

  • Wix

  • Squarespace

  • [PHP] Joomla Ecosystem (3%)

  • [ PHP] Drupal Ecosystem (2%)

  • [PHP] Adobe Magento (2%)

  • [PHP] PrestaShop (1%)

  • [Python] Google Blogger

  • [PHP] Bitrix (1%)

  • ##[PHP ] OpenCart (1%)

  • [PHP] TYPO3 (1%)

PHPs latest statistics are released: with a market share of 77.2%, it is still the preferred programming language” for websites

The application of PHP in the field of e-commerce

According to the BuiltWith report on online stores in August 2023, it can be seen that PHP still occupies a "dominant position" in the field of e-commerce:

  • WordPress website using WooCommerce plug-in (24% global market share)

  • Adobe Magento (7% global market share)

  • OpenCart (global market share 2%, Russian market share 24%)

  • PrestaShop (global market share 2%, French market share 14%)

  • Shopware (global market share 1%, German market share 12%)

PHPs latest statistics are released: with a market share of 77.2%, it is still the preferred programming language” for websites

Timo Tijhof also quoted Ars Technica’s chart Data, believing that "PHP still maintains a huge lead."

PHPs latest statistics are released: with a market share of 77.2%, it is still the preferred programming language” for websites

Application of PHP in large-scale scenarios

Keith Adams, chief architect of Slack, said that most of Slack’s server-side application logic is written in PHP. Relative to PHP's advantages (lower error costs through fault isolation; safe concurrency; and high throughput), its problems are negligible.

PHPs latest statistics are released: with a market share of 77.2%, it is still the preferred programming language” for websites

Vimeo engineers say Vimeo’s continued success with PHP proves that PHP is a great tool for fast-growing companies in 2020.

PHPs latest statistics are released: with a market share of 77.2%, it is still the preferred programming language” for websites

Timo Tijhof also concluded from a report by W3 Techs that among companies with relatively single businesses, the largest is WordPress, which drives Automattic’s WordPress.com. 20 billion PV per month (Alexa global ranking 55).

Taking a closer look at the entries accounting for 0.1% of the market share, we can see that a large number of websites are supported by the PHP system, and PHP is still the preferred framework for more than 100,000 small websites.

  • #23 CMS: Moodle

  • #25 CMS: phpBB, such as Google's Waze community, ApacheFriends forum, VideoLAN forum

  • #31 CMS: XenForo forum, such as ArsTechnica.com and MacRumors.com

  • #33 CMS: Roundcube

  • #45 CMS: MediaWiki

  • # 49 CMS: vBulletin Forum

  • #53 CMS: IPS communities such as MalwareBytes.com, BleepingComputer and Squarespace.com Forum

MediaWiki drives Wikipedia and a large number of third-party encyclopedias, with 25 billion PVs per month (ranked 12 by Alexa). MediaWiki also drives Fandom (2 billion PVs per month, ranked 44 by Similarweb) and WikiHow (100 million visits per month) (, Alexa Rank 215).

In addition, there are a large number of Internet companies adopting PHP technology stack, such as Facebook (Alexa ranking 7), Etsy (Alexa ranking 66), Vimeo (Alexa ranking 165) and Slack (Similarweb ranking 362).

Accordingly, Timo Tijhof believes that PHP still has unique advantages. "It has a huge productivity community, active developers, easy to learn, and easy to expand." Therefore, it still has an unshakable position today. .

The above is the detailed content of PHP's latest statistics are released: with a market share of 77.2%, it is still the 'preferred programming language” for websites. For more information, please follow other related articles on the PHP Chinese website!

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
PHP Email: Step-by-Step Sending GuidePHP Email: Step-by-Step Sending GuideMay 09, 2025 am 12:14 AM

PHPisusedforsendingemailsduetoitsintegrationwithservermailservicesandexternalSMTPproviders,automatingnotificationsandmarketingcampaigns.1)SetupyourPHPenvironmentwithawebserverandPHP,ensuringthemailfunctionisenabled.2)UseabasicscriptwithPHP'smailfunct

How to Send Email via PHP: Examples & CodeHow to Send Email via PHP: Examples & CodeMay 09, 2025 am 12:13 AM

The best way to send emails is to use the PHPMailer library. 1) Using the mail() function is simple but unreliable, which may cause emails to enter spam or cannot be delivered. 2) PHPMailer provides better control and reliability, and supports HTML mail, attachments and SMTP authentication. 3) Make sure SMTP settings are configured correctly and encryption (such as STARTTLS or SSL/TLS) is used to enhance security. 4) For large amounts of emails, consider using a mail queue system to optimize performance.

Advanced PHP Email: Custom Headers & FeaturesAdvanced PHP Email: Custom Headers & FeaturesMay 09, 2025 am 12:13 AM

CustomheadersandadvancedfeaturesinPHPemailenhancefunctionalityandreliability.1)Customheadersaddmetadatafortrackingandcategorization.2)HTMLemailsallowformattingandinteractivity.3)AttachmentscanbesentusinglibrarieslikePHPMailer.4)SMTPauthenticationimpr

Guide to Sending Emails with PHP & SMTPGuide to Sending Emails with PHP & SMTPMay 09, 2025 am 12:06 AM

Sending mail using PHP and SMTP can be achieved through the PHPMailer library. 1) Install and configure PHPMailer, 2) Set SMTP server details, 3) Define the email content, 4) Send emails and handle errors. Use this method to ensure the reliability and security of emails.

What is the best way to send an email using PHP?What is the best way to send an email using PHP?May 08, 2025 am 12:21 AM

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

Best Practices for Dependency Injection in PHPBest Practices for Dependency Injection in PHPMay 08, 2025 am 12:21 AM

The reason for using Dependency Injection (DI) is that it promotes loose coupling, testability, and maintainability of the code. 1) Use constructor to inject dependencies, 2) Avoid using service locators, 3) Use dependency injection containers to manage dependencies, 4) Improve testability through injecting dependencies, 5) Avoid over-injection dependencies, 6) Consider the impact of DI on performance.

PHP performance tuning tips and tricksPHP performance tuning tips and tricksMay 08, 2025 am 12:20 AM

PHPperformancetuningiscrucialbecauseitenhancesspeedandefficiency,whicharevitalforwebapplications.1)CachingwithAPCureducesdatabaseloadandimprovesresponsetimes.2)Optimizingdatabasequeriesbyselectingnecessarycolumnsandusingindexingspeedsupdataretrieval.

PHP Email Security: Best Practices for Sending EmailsPHP Email Security: Best Practices for Sending EmailsMay 08, 2025 am 12:16 AM

ThebestpracticesforsendingemailssecurelyinPHPinclude:1)UsingsecureconfigurationswithSMTPandSTARTTLSencryption,2)Validatingandsanitizinginputstopreventinjectionattacks,3)EncryptingsensitivedatawithinemailsusingOpenSSL,4)Properlyhandlingemailheaderstoa

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

Video Face Swap

Video Face Swap

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

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.