Skip to content

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

Pinned Discussion
3 2 959 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
    402 Views
    No one has replied
  • Microsoft in talks to buy TikTok

    Discussion microsoft tiktok
    2
    3 Votes
    2 Posts
    562 Views
    @phenomlab well I hope that a better company steps up and puts in a higher bid. If I had the money I would buy TikTok. That platform is a money makers dream. So many people on it now er or was. I think MS will just mess it up like they do everything else. Hell, they can’t even get their own software to work correctly, how would they even keep that one up and running.
  • Ross Ulbricht pardoned by Trump

    Discussion ulbricht silkroad trump
    3
    0 Votes
    3 Posts
    585 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.
  • 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
    13k 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
  • 8 Votes
    9 Posts
    1k Views
    This is interesting - $116m bet on share positions? https://news.sky.com/story/gamestop-stock-resurgent-as-influencer-roaring-kitty-places-116m-bet-on-retailer-13147356 Anyone else think this sounds very much like insider trading?
  • CURL GET

    Solved General php curl get
    2
    0 Votes
    2 Posts
    723 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);