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
  • 1 Votes
    2 Posts
    12 Views
    @phenomlab this is good. I see this happen a lot. It is unclear because usually it is a group talking and going over things and trying to plan according to the knowledge that they have with what is working and not working now. And yet some time down the road, something new comes out, something changes and now what was possible isn’t and vise versa. I have seen these kinds of situations, and I encourage taking very good notes and making them so they are always accessible to you/your team so that way a search can be done and the notes appear and you know exactly why, what, how and where the decision was made. When I say you, I mean anyone in a position to make decisions that bring about change in whatever area it might be.
  • 5 Votes
    5 Posts
    950 Views
    and BOUM Personally, I don’t hate American companies. I use their products like everyone else, but I think their economic weight is such that they impose their own rules instead of respecting those of the countries where they do business. And here, for once, the DMA is putting the church back in the middle of the village (French Expression).
  • 0 Votes
    1 Posts
    402 Views
    No one has replied
  • Ex GCHQ employee risk to national security

    Discussion gchq security
    4
    1 Votes
    4 Posts
    747 Views
    @phenomlab said in Ex GCHQ employee risk to national security: I can’t believe also that security is so lax that someone without adequate clearance can waltz into a restricted area and take what they want. Yeah I can’t believe that either. It is crazy
  • 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.
  • 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);