Skip to content

PHP is dead? No, it isn't!!

Pinned Discussion
3 2 928 1
  • 1000015238.jpg

    I learned PHP in 2006 and still use it extensively today. Let’s also not forget that thanks to wordpress, PHP powers over 70% of the Internet.

    W3Techs reports that 74.2% of all websites for which the server‑side language is known are powered by PHP (as of May 21, 2025).

    Another recent source (ZenRows) quotes 74.5%, describing it similarly as the share of websites using PHP for server‑side tasks.

    Some other data points like Citrusbug offer a slightly higher figure of 76.2%.

    A Kinsta article puts the number at 79.2% of all websites.

    Given the consistency across multiple reputable sources, PHP currently powers approximately 74% to 79% of websites with identifiable server-side languages.

    So not “dead” then…

  • 1000015238.jpg

    I learned PHP in 2006 and still use it extensively today. Let’s also not forget that thanks to wordpress, PHP powers over 70% of the Internet.

    W3Techs reports that 74.2% of all websites for which the server‑side language is known are powered by PHP (as of May 21, 2025).

    Another recent source (ZenRows) quotes 74.5%, describing it similarly as the share of websites using PHP for server‑side tasks.

    Some other data points like Citrusbug offer a slightly higher figure of 76.2%.

    A Kinsta article puts the number at 79.2% of all websites.

    Given the consistency across multiple reputable sources, PHP currently powers approximately 74% to 79% of websites with identifiable server-side languages.

    So not “dead” then…

    @phenomlab I don’t think php will ever die, unless some amazing new way to program comes along and all the php can be easily switched over. But I doubt that to ever happen haha

  • @phenomlab I don’t think php will ever die, unless some amazing new way to program comes along and all the php can be easily switched over. But I doubt that to ever happen haha

    @Madchatthew I can’t see it happening either to be honest. It’s one of the most mature programming languages there is, and given the figures, it’s clear to see is not going anywhere anytime soon.

  • phenomlabundefined phenomlab pinned this topic on

Related Topics
  • 0 Votes
    1 Posts
    398 Views
    No one has replied
  • Ross Ulbricht pardoned by Trump

    Discussion ulbricht silkroad trump
    3
    0 Votes
    3 Posts
    572 Views
    @Panda said in Ross Ulbricht pardoned by Trump: So @phenomlab are you arguing that a ‘Double life +40’ sentence is what you would have been in support of, i.e. no release at any stage?? Yes, exactly. Let’s not forget the reason for the sentence in the first place, plus the fact that he created Silk Road with the intent for it to be used for nefarious purposes, and stood to make a lot of money from it. He fully intended to take advantage of the profit being returned at the expense of those people who died, and couldn’t care less about the demise of others as long as he was able to make money.
  • Australia passes social media ban for under 16s

    Discussion social
    11
    11 Votes
    11 Posts
    1k Views
    @phenomlab I agree with you, otherwise they would have already done that.
  • Note Taking App

    Discussion notetaking opensource
    13
    4 Votes
    13 Posts
    1k Views
    @Madchatthew A simple PWA would probably suffice in the meantime
  • 15 Votes
    14 Posts
    2k Views
    @phenomlab said in What's your view on RSS - is it dead technology?: @JAC would be keen to get your views around RSS feeds I’ve used RSS feeds over the years to pull in articles on forums and websites. I also have an RSS feed app on my phone that contains selective football news, it’s still an incredibly handful tool for me.
  • Which email client do you use?

    Discussion email client
    56
    22 Votes
    56 Posts
    12k Views
    @phenomlab said in Which email client do you use?: @DownPW Isn’t this more of an email server in it’s own right rather than an email client? Oh yes sorry… I didn’t pay attention
  • 4 Votes
    4 Posts
    994 Views
    @phenomlab said in TikTok fined £12.7m for misusing children’s data: Just another reason not to use TikTok. Zero privacy, Zero respect for privacy, and Zero controls in place. https://news.sky.com/story/tiktok-fined-12-7m-for-data-protection-breaches-12849702 The quote from this article says it all TikTok should have known better. TikTok should have done better They should have, but didn’t. Clearly the same distinct lack of core values as Facebook. Profit first, privacy… well, maybe. Wow, that’s crazy! so glad I stayed away from it, rotten to the core.
  • CURL GET

    Solved General php curl get
    2
    0 Votes
    2 Posts
    719 Views
    is working $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); //for debug only! curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); $resp = curl_exec($curl); curl_close($curl); print($resp);