Why Everyone Hates PHP (and why you should too)

Поделиться
HTML-код
  • Опубликовано: 19 ноя 2024

Комментарии • 391

  • @Maxsword3
    @Maxsword3 10 месяцев назад +42

    Loved contributing to the video! Keep it up

    • @eulmdev
      @eulmdev 5 месяцев назад

      underrated yter go brr
      this man should have more subs

  • @eptic-c
    @eptic-c 10 месяцев назад +447

    Saying that php code is not readable because you write your logic in a php file that contains both logic and presentational layer is the same as writing your javascript on the event handlers of html elements. ( like onclick="" )

    • @RealDevastatia
      @RealDevastatia 10 месяцев назад

      Right? I guess addEventListener is too hard for some people.

    • @antifa_communist
      @antifa_communist 10 месяцев назад +9

      It's still terrible without that.

    • @ob34915
      @ob34915 9 месяцев назад +46

      You should see nextjs with react server component you can write sql query in react its basically php early days.

    • @trashhater9304
      @trashhater9304 6 месяцев назад

      ​@@ob34915please, this is innovation, future of programming, not some crappy blue elephant code from early 00s.

    • @Leonhart_93
      @Leonhart_93 6 месяцев назад +13

      Yeah, 98% of the PHP code I write is hundreds and thousands of lines in controllers, services and repositories. Very little in views.

  • @ripplesr5655
    @ripplesr5655 6 месяцев назад +160

    Just so you know, the entire web development kind of cycled back to the good old PHP way of doing things. PHP is an incredible language.

  • @dgxo
    @dgxo 6 месяцев назад +90

    “and as you can see”, shows the code for half a second while scrolling randomly so nothing is visible, “this code is hard to read”

    • @COArSe_D1RTxxx
      @COArSe_D1RTxxx 5 месяцев назад

      if you pause, the code isn't even hard to read lol

    • @novac1
      @novac1 3 месяца назад

      true

  • @gonzo191
    @gonzo191 6 месяцев назад +136

    Conclusion of the video: Skill Issue!

    • @thefreshprince-t4m
      @thefreshprince-t4m 3 месяца назад

      These days you can take a scrambled egg looking code, and with the help of AI, you may refine that code into a more legible piece of code for the program to run.

    • @thefreshprince-t4m
      @thefreshprince-t4m 3 месяца назад +1

      I love php, php is so cool.

  • @MrRaitiz
    @MrRaitiz 10 месяцев назад +98

    What an awful conclusion ahahaha.
    Then you have Theo from t3 who hates CORS, because the fkin JS backend framework (Next.js) does not handle the simple flow of CORS elegantly. While PHP frameworks have this functionality built in. PHP frameworks are so much more mature than ANYTHING on the JS side for backend.

  • @happykc79
    @happykc79 6 месяцев назад +122

    php hater means that they are newbies. PHP is a language you must know if you are a web developer. Almost 80% of websites online are built with php.

    • @KX36
      @KX36 5 месяцев назад +6

      20 years ago, you would be right.

    • @jf3518
      @jf3518 5 месяцев назад +11

      @@KX36 he i still correct. Most websites use Wordpress, which runs on PHP.

    • @TheThirdWorldCitizen
      @TheThirdWorldCitizen 5 месяцев назад +5

      Almost all forums and CMS use PHP, it’s still a very popular language for the web.

    • @pangzlab
      @pangzlab 5 месяцев назад +3

      PHP is the grandfather of CMS.

    • @_____1826
      @_____1826 5 месяцев назад

      ​@@KX36 have you check it twice????

  • @VectorM
    @VectorM 10 месяцев назад +203

    Php is awesome 💯🔥

  • @supersambat7989
    @supersambat7989 6 месяцев назад +37

    they can say anything to PHP, but with PHP I made living

    • @garikayichinhakwe9209
      @garikayichinhakwe9209 12 дней назад +1

      I made lots of money through PHP.. More than 80% of web projects are done in php

  • @JustKatoh
    @JustKatoh 10 месяцев назад +152

    I really don't think a language made of a thing should be hated.
    Everyone hates php because they do not use it properly, it's actually one of the most efficient languages out there, as long as it's 7.4+
    Why don't people hate on python? It's unironically slower than php, much slower, but people still write whole stacks in Flask, why? It's a language made for cobbling shit together so that you can test it quickly and prototype not put up in production...
    Idiots keep complaining about php when they're using php lower than 7 and try and make stupid stuff such as games in it.
    Idiots love python, even though it's slower than php and use it in production??
    What has this world come to? I have 10 years experience in php, java and in the last few years golang... and the only people that like python and hate on php are complete beginners or do programming as a job only and have no passion for it.

    • @edu_z123
      @edu_z123 10 месяцев назад +29

      and there's the thing that they always compare vanilla PHP with frameworks, e.g flask,spring....
      apples to oranges

    • @minhnhatnguyen8200
      @minhnhatnguyen8200 10 месяцев назад +4

      yeah I hate python , it's syntax overly brief

    • @asdfghyter
      @asdfghyter 10 месяцев назад +3

      i don't get what you mean with "made of a thing"?
      i would rather say that i hate it because it _encourages_ people to not use it properly. it is filled to the brim with footguns, which you just need to learn to avoid if you don't want to shoot yourself in the foot. one of my favorite "features" is the implementation of references in combination with silly scoping rules, which makes this snippet:
      $a = array('a', 'b', 'c', 'd');
      foreach ($a as &$v) { }
      foreach ($a as $v) { }
      print_r($a);
      give the intuitive answer: a, b, c, c
      we ran into this issue at my previous job and had an issue in production that went unnoticed for over a month where the last item on a piece of user data was replaced by the second to last item 😅
      this also reminds me of the frankly insane decision to not differentiate between ordinary arrays and hashmaps, which is just generally confusing and can also lead to some strange bugs
      yes, python can be bad in many ways, but it doesn't have nearly as many footguns as php does

    • @asdfghyter
      @asdfghyter 9 месяцев назад +1

      @yestechguy-fj9tm at least ts actually has a proper type system. php’s doc-comment types can’t even do proper generics

    • @MrSMGun
      @MrSMGun 6 месяцев назад

      ​@@asdfghyterelaborate

  • @iVirtuall
    @iVirtuall 10 месяцев назад +41

    this man told a lie in the first sentence y'all haters

  • @n4botz
    @n4botz 10 месяцев назад +36

    PHP is not really or no longer terrible if you stick to the latest versions. And this is said by someone who, over two decades ago, wanted nothing to do with programming at all.
    Plot twist: The same guy, me, now earns his living as a full-stack dev. 🤷‍♂A bit like the Cookie Monster from Sesame Street: languages, languages, more languages please.
    But yes, PHP, like any other language, can be terrible if you only have a rudimentary understanding of it. Nonetheless, an entertaining video and a like from me.

    • @EnhanceCode
      @EnhanceCode  10 месяцев назад +3

      Thank you, brother for your constructive comment. I appreciate that you caught onto the humor in the video. I acknowledge that the language used might be a bit strong, but I made a conscious effort to discuss Laravel and its positive aspects in specific situations.

  • @ExtraNullByte
    @ExtraNullByte 10 месяцев назад +20

    I can get so much done with 10 lines of php code that other languages can only dream of, no compile, no hastle, no binary, just works.
    does it have downsides? yes, debugging is one of those, but devs debug in prod, so it's all good. Jokes aside, PHP has its downfalls but it doesn't make it any less of a language compared to others, real programmers see it as another tool to get the job done and we pick tools best of the job and sometimes it's PHP. People that hate the language are script kiddies that don't know how to use it, slapping it in HTML and then finding it confusing and then end up hating it, if you have time to complain about a language then you are not doing your job correctly =D

  • @adosemotivacional
    @adosemotivacional 9 месяцев назад +21

    A language is just a tool. If you can solve problems with it, than it's good. There's no sense to me in loving or hating a programming language. It's like "I love my hammer, but I hate my screwdriver"

    • @kieronwiltshire1701
      @kieronwiltshire1701 6 месяцев назад +1

      I can't re-use your analogy, but when you have two languages, one with much better performance and achieves the same results, why would you opt to choose a less performant one? Not to mention something like NestJS/Typescript/JS/NPM has a much larger eco-system and community than PHP nowadays.

    • @DoctorMGL
      @DoctorMGL 5 месяцев назад

      ​@@kieronwiltshire1701
      here come the lazy glue engineer, the guy who glue " javascript libraries " together and call himself a programmer LMAO
      I ship 3 php projects by the time you struggle to solve your npm dependency nightmare to get some library working that should exist in the default language. and your not even the person who create those libraries , using other people sweat .
      get better glue engineer . there still hope for you .
      PHP is only as good as the developer.
      If you think it sucks, it's a (( skill issue )).

  • @hellodefhellow
    @hellodefhellow 8 месяцев назад +51

    Lol im tired of javascript dependencies so might switch to something like php or rails

  • @ritualsoftware6503
    @ritualsoftware6503 Месяц назад +5

    I don’t think the PHP is the issue…

  • @meme_me
    @meme_me 6 месяцев назад +15

    bro are you living in 2012 ? also who uses Native PHP for full-stack like the example you showed well unless its for a simple small project

  • @Abdullah-zd5rz
    @Abdullah-zd5rz 2 месяца назад +2

    Things made me love PHP:
    1- Easy to understand
    2- Huge community helps you in any problem
    3-Easy to install and free to use
    4- No fkin CORS problems with node.js
    5-Jobs on demand locally and internationally

  • @lucasvillani5484
    @lucasvillani5484 6 месяцев назад +11

    PHP has a function for almost everything, is such a mature language

  • @arjix8738
    @arjix8738 10 месяцев назад +27

    Ok, lets be honest here, PHP 8.1 and above is great, i got no complaints there
    But when most websites written in it use PHP 7.3 and below, or even PHP 5, things start to get hard.
    Also, you dont need laravel to make easy to read/maintain + dynamic code for a website, you just need experience in PHP, just like with any language, you need experience if you want to skip the use of any library.

    • @someverycool4552
      @someverycool4552 10 месяцев назад +3

      Even with experience though, consider how much value Laravel and things built on top of it add on.
      I would say that about NodeJS frameworks, that they are a real cluster*uck, but Laravel is invaluable in terms of what it provides out of the box. Database migrations, auth, simple auth views, task scheduling etc, etc.
      There's no framework for NodeJS that is as of high quality as Laravel is. And I would say that Laravel is highest quality of all frameworks for all languages. E.g. Laravel > Django and definitely above anything that is for Java and others.
      NodeJS things just get outdated too quickly and don't seem to have that level of care, and it's like they have no idea what they are doing so running back and forth between different paradigms.
      But your point was that you can still write maintainable code without Laravel, which I agree with, so my tangent is probably not against what you actually wanted to say.

    • @fayenotfaye
      @fayenotfaye 10 месяцев назад +2

      Anyone who says it’s hard to understand kinda has a skill issue, there’s barely any abstraction and everything kinda just does what it says

    • @arjix8738
      @arjix8738 10 месяцев назад

      @@someverycool4552 I haven't had the chance to use Laravel myself, I got into PHP because I had to make wordpress plugins for the company I work for
      And I had to write entire backends with WordPress' REST API extensibility.
      I had to write data validation, data parsing and some other stuff from scratch. (not recommended)
      All that in PHP 7.1 which doesn't have strict type checking.
      After a year we finally migrated to PHP 8.1 and it felt so good that I could finally enforce types.

    • @RealDevastatia
      @RealDevastatia 10 месяцев назад +2

      @@fayenotfaye Yep. I still use only native PHP and JavaScript with no frameworks. Still using PHP 7.4 too. Never had an issue with it. I saw bugs in early PHP 8 releases that made me back out of it. I want to get things done, not work around issues somebody else created.

    • @commandstring
      @commandstring 10 месяцев назад

      Exactly this. 8.0+ is amazing. But once I see the version dip below 7.4, I begin to worry for my sanity.

  • @Ed.E
    @Ed.E 10 месяцев назад +13

    PHP is goated when you use it right frfr. It's suprisingly powerful

  • @arthurminasyan9591
    @arthurminasyan9591 4 дня назад +1

    Blaming a programming language due to either personal inability to work with it or encountering poor code written by a friend...

  • @Code_Capital
    @Code_Capital 10 месяцев назад +25

    All my homies love PHP (we only write code via Artisan commands)

    • @sirjaf2010
      @sirjaf2010 10 месяцев назад +1

      From what you wrote, you don't have a clue of how PHP works. Educate yourself first.

    • @Code_Capital
      @Code_Capital 10 месяцев назад +19

      @@sirjaf2010 From what you wrote, you have no sense of humour whatsoever. Respectfully, a full-time PHP developer.

    • @purplevanilla
      @purplevanilla 9 месяцев назад

      @@Code_Capital bro really made him taste his own medicine

    • @xldplx
      @xldplx 6 месяцев назад

      @@Code_Capital lmaooooooo

    • @mosti72
      @mosti72 5 месяцев назад

      Love Tinker ngl

  • @entx8491
    @entx8491 5 месяцев назад +4

    When I want to watch something really dumb I watch this video.

  • @JAUSCR
    @JAUSCR 5 месяцев назад +6

    more than 70% of all internet. PHP the King!

  • @DEBUGENTITY
    @DEBUGENTITY 6 месяцев назад +13

    PHP is the best.. Even next js now using php type routing

  • @RicardoSilva-hk2er
    @RicardoSilva-hk2er 10 месяцев назад +8

    I just have something to say: "No longer deprecated"

  • @neatkefe
    @neatkefe 2 месяца назад +1

    The biggest problem PHP ever had is that it's too easy to get started with it. That made a lot of wide spread open source code bases, frankly, shit. Wordpress, I'm looking at you. However, actually working with it full-time, and having tried to use Python, JS/TS and even Rust, I've gotta say that PHP is the perfect blend between simplicity and power. It does not protect you from writing bad looking code, but it gives you the power to build really powerful web apps if you know what your doing.
    I think the hate of PHP really comes from the fact that it runs differently than Node or Java apps do. Is it better? Depends. But you do need to think about the app in a different way when using php.

  • @Leonhart_93
    @Leonhart_93 6 месяцев назад +7

    Oh really? Then why is PHP8 + Laravel thriving right now? An excellent language for web servers while also not lacking anything specifically. I never had any issue implementing any kind of logic in it.

  • @andyhinkle
    @andyhinkle 5 месяцев назад +4

    This video is clearly done by someone who hasn't used PHP in 10 years.

  • @3VERone
    @3VERone 5 месяцев назад +2

    Modern PHP can be written using classes, traits, abstract functions, or interfaces. In conclusion, C#, C++, Java, etc., are not ideal; just replace everything with JavaScript to distort this language even further from its original intent.

  • @VitorZonho
    @VitorZonho 6 месяцев назад +6

    Oh no, give me a bicycle with training wheels, with a helmet, elbow pads and a track made out of a pillow so I don't get hurt when I fall, all because I don't know how to pedal properly and I need devices to stop me from messing up. Please php is very bad because it allows you to create jerry-rig improvisation code, I don't like this I'm going to cry, mom, give me an IDE that will let me know I'm doing it right!! I want warnings please warnings

  • @mastermindinclude7198
    @mastermindinclude7198 Месяц назад +1

    I work with PHP, i love the language.
    The mix of PHP and HTML got me confusing
    So what did i do? I used PHP to, make a framework that suited me and my development process.
    PHP being almost base level, meaning i was able to fix almost any issues i faced but just coding it... i packaged it and i have my very own, personalized; Component Based Modular Dynamically Routable Framework.

  • @AnuragMohan-y6i
    @AnuragMohan-y6i 3 месяца назад +1

    Having worked as a PHP developer for more than seven years, I believe that PHP is an outstanding language at present.

  • @MarcelRiegler
    @MarcelRiegler 10 месяцев назад +3

    As someone having to "DevOps-ify" PHP applications, building a good CI/CD pipeline for it is an absolute shitshow. Dockerizing a web app, for example, is huge pain.
    The language itself (at least the newest version) is actually pretty nice.

    • @LuisEduardo-ik3ex
      @LuisEduardo-ik3ex 7 месяцев назад

      I agree with everything you said. PHP is good as long as you only focus on the development part, when we start scaling or dockerizing a PHP application it's really shitty to do that.

  • @lordadamson
    @lordadamson 5 месяцев назад +1

    I was worried people actually like this video, but the like to dislike ratio gives me hope in humanity

  • @oleksii_letscode
    @oleksii_letscode 3 месяца назад +1

    PHP still alive for web in 2024 💪🏻

  • @abdmaster
    @abdmaster 5 месяцев назад +2

    Intentionally showing bad PHP code to prove your point won't make it bad...
    Compare with PHP8 and a good Laravel project ...

  • @nathanheath3756
    @nathanheath3756 4 месяца назад +1

    This is why you use Laravel rather than raw PHP. Much more secure.

  • @Flinsch77
    @Flinsch77 5 месяцев назад +2

    When I talk to other people about programming languages, it's actually only the less experienced who complain about certain programming languages ​​(e.g. PHP). Experienced programmers rarely do that. Everyone has their preferences and aversions, of course, but with PHP in particular, I feel like it's mostly just "copycats" who criticize it. May I ask, how experienced are you with (different) programming languages ​​and software development in general, video creator?

  • @AlexIsTripping
    @AlexIsTripping 6 месяцев назад +2

    I don't really get the hate on PHP. Its a fast but simple object oriented language that doesn't suck unlike python

  • @eleinaedelweiss6215
    @eleinaedelweiss6215 3 месяца назад +1

    between js and php i choose php with the bare minimum js stuck into it

  • @chrisalexthomas
    @chrisalexthomas 10 месяцев назад +6

    Everything in this video comes down to two words "skill issue". Shit programmers are gonna write shit code ¯\_(ツ)_/¯

  • @houseandhobby6971
    @houseandhobby6971 7 месяцев назад +4

    Python is not good about protection of bugs thanks to its reliance on indentation to dictate code block scope and associated execution. It is a huge mistake to not go with explicit code block terminators as are found/used in php and js and C and C derivatives. One little backspace or tab and you have a surprise to come and possibly a hard time fixing the bug if you did not notice the keystroke quite quickly. Also, try scrolling upward in Python code and having a sense of where you are in the code block hierarchy. Its so true that people love to dogpack hate on something while turning blind eyes to ugliness where its uncool to complain.

    • @JohnSmith-yl2fh
      @JohnSmith-yl2fh 5 месяцев назад

      Have you heard of linters and formatters?)))

    • @aoeu256
      @aoeu256 5 месяцев назад

      idendentation is only a problem for people who haven't coded in python...

  • @aaronza7218
    @aaronza7218 6 месяцев назад +2

    The language that many years ago and to this day many are saying it is dead. But still kicking. Why is PHP so popular?

  • @DanKxxx
    @DanKxxx 5 месяцев назад +1

    javascript can be used for backends. Yeah it can, but in an ideal world it wouldn't be, just like using php.

  • @MB-up3mh
    @MB-up3mh 10 месяцев назад +12

    Use framework like symfony which is pretty much like spring in Java. Same principles applies.

  • @bdenix1997
    @bdenix1997 6 месяцев назад +4

    back then like 2008 or so youtube and facebook all had .php on the url so i thought php was the ultimate language for websites :D

    • @abhishekbhagat9313
      @abhishekbhagat9313 6 месяцев назад +1

      Facebook still has it they just have their own version of it.

    • @mosti72
      @mosti72 5 месяцев назад +2

      People hide it nowadays, especially if you use a framework like Laravel

  • @johnbrown7722
    @johnbrown7722 8 дней назад

    If you follow an MVC framework, it can be much easier to track things down. Models being the DB interface and some security, Controllers being the director of requests, and views containing all HTML and CSS so it stays cleaner. Also following the PHP Standards Recommendations make it much more practical and functional.

  • @RazvanTSibiu
    @RazvanTSibiu 10 месяцев назад +4

    As most of PHP is WordPress and Laravel, Python is mostly for AI (PyTorch and Tensorflow) two complete different fields. When you compare it for Web Development, Python with PHP you should compare Django to Laravel then you'll see that bot are almost the same.

    • @fdssd1736
      @fdssd1736 9 месяцев назад

      Nodejs or golang are simply are better alternatives to php.

    • @RazvanTSibiu
      @RazvanTSibiu 9 месяцев назад

      @@fdssd1736 also better alternative to python but the final cost will be enormous. Try do an mvp in golang or nodejs then you'll realise at the end it cost u a lot more. In php you can create faster and performant applications that can handle 1000+ users on a decent server.
      Nodejs and golang are not mature enought for fast development.

    • @RazvanTSibiu
      @RazvanTSibiu 9 месяцев назад

      @@fdssd1736 Also you can have PHP extensions written in golang for more performance.

    • @Leonhart_93
      @Leonhart_93 6 месяцев назад

      @@fdssd1736 NodeJS has absolutely no perks compared to PHP. Not even the performance. And don't get me started on the bloated node_modules, that PHP pretty much completely side-steps by having an incredible STD library.

    • @RazvanTSibiu
      @RazvanTSibiu 5 месяцев назад

      ​@@fdssd1736 I used NodeJS too with a ton of frameworks, it's not even close to PHP.
      I started a project with a team in NodeJS and In 2 months we decided to switch to Laravel because NodeJS was too limited, bad documented with poor examples. PHP on the other side has a bit weird syntax but for me it doesn't matter. Taylor Otwell took care of absolutely everything to be made easy.

  • @aakash.pradhan
    @aakash.pradhan 8 месяцев назад +2

    Some people hate PHP, some hate JavaScript, others hate C++, Python etc. Then what do they like? These hate videos are just stupid and confusing.

  •  5 месяцев назад +1

    I'm proud PHP/laravel dev, and proud react hater. THO i use laravel just as API, so models and controllers, and vue.js at front - i think this is best combination of both worlds! For years i hear hate for php and php is dead - but i'm still waiting for it.

  • @rafa6536
    @rafa6536 6 месяцев назад +1

    PHP with Symfony, Stimulus and Turbo is just totally awesome. I recommend teleport yourself into 2024 :D

  • @MrAndreaGero
    @MrAndreaGero 5 месяцев назад +1

    I just use PHP because of Laravel, if the creators of Laravel move to another language, I'll probably follow them

  • @GelX
    @GelX 5 месяцев назад +1

    the code is hard to read? how did you read that simple php login code? from upside down monitor? come on.

  • @joeyboli
    @joeyboli 6 месяцев назад +4

    1:28 why use a js screenshot ?

  • @timurrte5694
    @timurrte5694 10 месяцев назад +3

    Well well well. It's still better than JavaScript

  • @eidodk
    @eidodk 5 месяцев назад +1

    Who is this Ramses Lurdor? The name is Rasmus Lerdorf. Also it seems most if not all serious programming languages are created by danes.

  • @fcnealvillangca7943
    @fcnealvillangca7943 8 месяцев назад +4

    The hate for php feels more like trolling sensitive dev nothing to do with php itself

    • @DoctorMGL
      @DoctorMGL 5 месяцев назад

      i'll tell you why they hate it ,
      php haters are a lazy ( glue engineers ) , we give them this name because they don't actually ( program ) .
      they glue " javascript libraries " together and call themselves " programmers " LMAO
      PHP is only as good as the developer.
      If they think it sucks, it's a (( skill issue )).

  • @christophergruendell8089
    @christophergruendell8089 9 месяцев назад +4

    It just sounds like you’re bad at php. I learned a bit about php my first couple years of college, and it definitely gets too much hate. All the tools and techniques to make your code easy to read, maintainable, and secure are there. I’m graduated now and work with many languages, but php will always be held in good regard in my opinion.

  • @arsvi123
    @arsvi123 10 месяцев назад +19

    I have a soft spot for PHP as it was the first language I learned. It's not a good language, it's general lack of structure and strong convention lets it down a lot. Doing things the 'right' way is often unintuitive when compared with doing things the inefficient, insecure way. Combine that with often inexperienced developers (of whom I was one, I must admit) and you get some really awful code. However it does deserve credit in that our modern web would likely not exist in it's current form without it, PHP has been 'dying' for as long as I remember, and while it is certainly in it's sunset phase it's longevity is a testatement of it's value. For a long time there was no good alternative, and for all it's faults (of which there are many) it did get a few things right, such as keeping your HTML code close to your rendering logic (one of the main reasons behind success of React imo) allowing for easier development. While I would not go back to working in PHP and it's certainly an outdated language that should be allowed to `die()`, it's importance and is often under-appreciated.

    • @Leonhart_93
      @Leonhart_93 6 месяцев назад +2

      What do you mean lack of general structure? It is a very complete language. It's my job to write thousands and thousands of lines of it, and I would have never made it if its ability to structure large pieces of code wasn't good.
      It realistically lacks nothing. It can be structured in an OOP way or purely functional or both. Everything is just so easy to use and the performance these days is actually really great. I would say definitely better than nodejs.

  • @ayorus
    @ayorus 5 месяцев назад +1

    This video makes me remember that music from Nivana: smells like skill issue spirit.

  • @orcofnbu
    @orcofnbu 10 месяцев назад +8

    most of php haters, hate from old php.
    but things changed after 7th version of language.
    it is more strict then js right now.
    php is best way to develop modern web apps.
    more strict and clean then js.
    cheaper to host than everything.
    modern enough to work with modern frontend frameworks.
    it has wide enough userbase to employ coders for it

    • @dawidgrden2227
      @dawidgrden2227 10 месяцев назад +1

      Exactly a lot of people miss this concept, really cheap hosting, you could host a blog for a client on a shared hosting for 60$ a year, plus you have to start somewhere, php is not much different than other OOP languages except for the lack of async which is managed in a different way, Node is indeed scalable but requires proportional amounts of hardware power for scaling.

    • @GLT-fk7bg
      @GLT-fk7bg 7 месяцев назад

      and they never coded in php more than what w3 school provides

  • @williamkyaw516
    @williamkyaw516 9 месяцев назад +2

    I actually agree. I pretty much failed my web dev module in my first year of university. In my second year, we had a team projects module to make a (project management) web app. I thought I was going to stuggle hard time but it wasn't too bad since my friend's used Laravel which was actually very eloquent and quite beginner friendly, at least in my opinion. Tbf my friends helped me out and I did use GPT so I might be a bit biased

    • @xelspeth
      @xelspeth 5 месяцев назад

      While yes you are biased (you are sharing your experience afterall) this is a quite common standpoint on bigger php frameworks (like laravel, symfony etc).
      This is mainly because they simply have the best documentation

  • @zayne-sarutobi
    @zayne-sarutobi 10 месяцев назад +2

    Never laughed this hard at programming humour since Fireship!😂😂
    Definitely here before this channel blows up🌝

  • @hamzameski3297
    @hamzameski3297 5 месяцев назад +3

    Man Are you sure! You are a programmer? Form template and code logic at the same file. Wtf

    • @komrander7497
      @komrander7497 2 месяца назад

      he doesnt even know how to use a join in sql apparenlty 😭

  • @leonardosilva_dev
    @leonardosilva_dev 5 месяцев назад +2

    Was a junior JS developer who made the video, right?

  • @piadas804
    @piadas804 Месяц назад

    The main reason I want to learn PHP is because my school requires it.

  • @levett_
    @levett_ 5 месяцев назад

    I'm mainly a JS dev and I don't see how you can find the code at 1:56 any harder to read than React. If you know HTML you can see the structure, even if you don't know PHP at all, if you are a programmer you can surely read the conditionals, loops, you can pick out the SQL which is very human readable...
    It's not well written but you should be able to read it fairly easily if you have any programming experience.
    But sure if you zoom right into the page and only show it for a few seconds while scrolling then it is hard to read. You can write bad code in any language. If you take a look at the structure of Laravel it's really well-written PHP that sticks to a strict standard and most PHP developers are using it these days.

  • @MarkKevinBesingaWebDev
    @MarkKevinBesingaWebDev 16 дней назад

    So, why do you hate it, exactly? Because from the comments here, it looks like not everyone is on the 'PHP hate train.' I mean, I haven’t touched PHP in years, yet somehow I’m still excited about its update. Compared to the usual JS/TS or Python BS, PHP is still rocking the backend game. Guess not everyone can handle that energy, huh?

  • @garikayichinhakwe9209
    @garikayichinhakwe9209 12 дней назад

    I made lots of money through PHP.. More than 80% of web projects are done in php

  • @PinnedBeats
    @PinnedBeats 5 месяцев назад

    Amazing video! How much time did it take to edit it? 😮

  • @ChrisHorneVL
    @ChrisHorneVL 10 месяцев назад

    People say PHP is terrible because it's the cool thing to do. The frameworks back in the CI/YII/Zend days yeah they were pretty rough, but that's not the language. It's like saying spanish is a bad language because you don't like its syntax or how it's structured or how people use it.. or maybe you just don't like how Que eso? sounds like cheese.

  • @oRhstore-cl8wc
    @oRhstore-cl8wc 10 месяцев назад +18

    nobody coding in php like you showed, noob. php now more better in backend than python or nodejs. It has much feature like java or c# and fast, fastest than python or js. php8.3 is great for your projects and close 99% working needs. So, your opinion is to low

    • @harshitraheja
      @harshitraheja 10 месяцев назад

      these gays don't know how to code

    • @iVirtuall
      @iVirtuall 10 месяцев назад +1

      based comment

    • @arjix8738
      @arjix8738 10 месяцев назад +1

      Please improve your English sir.
      Although I'd like to agree, (I've even made a similar comment), but PHP is not better than nodejs for backend.
      It may be easier, but that doesn't make it better.

    • @dawidgrden2227
      @dawidgrden2227 10 месяцев назад

      The only thing that php lacks is async, there is an async framework called PHPswole but I don't know it's reliability, although if php 9 integrates async it will be nuts and everyone will start using laravel or symphony

    • @tanzimibthesam5861
      @tanzimibthesam5861 10 месяцев назад

      @@dawidgrden2227 there is reactphp Xframework

  • @arghaghosh5561
    @arghaghosh5561 5 месяцев назад

    Hello I am from India . How much do you make as a WordPress developer in Europe?

  • @just2genders668
    @just2genders668 4 месяца назад

    People who hate php suck at coding in php, anyone else either dgaf about php or look like they love it but in reality are just defending it from haters.

  • @genechristiansomoza4931
    @genechristiansomoza4931 10 месяцев назад +4

    I love php

  • @vladimirandrushchenko2926
    @vladimirandrushchenko2926 10 месяцев назад +6

    I think that people should study the job market in their country before making a decision on what technologies to learn.
    You can spend a lot of time learning some js (inarguably the most popular language) obscure framework and end up not being able to find a job.

    • @crabort
      @crabort 10 месяцев назад

      The trick is to learn something that isn't in high demand, but has demand. High demand, means more people are likely to know it better than you do. Lower demand, means that its not as common. Learning COBOL right now would be an almost astronomically dumb idea, unless you land that one job that's hiring for it and you make WAY more than any JS/PHP dev doing it.

  • @lucassenandelopez6324
    @lucassenandelopez6324 6 месяцев назад

    I didn't know know anything about php and I am not interested in webdev in the slightest but what I got of this video is that it doesn't deserve the hate.
    You described a programming language used for one thing and that's it; you cannot judge a fish on it's ability to talk

  • @KingGisInDaHouse
    @KingGisInDaHouse 9 месяцев назад +1

    If I had a $ for every time I used a variable in php… oh wait never mind lol

  • @yexiugamingmuarchangelsea8892
    @yexiugamingmuarchangelsea8892 5 месяцев назад

    Writing clean code depends not on the language but on the person behind the keyboard. I've been a developer for 20 years, and yes, there are services we write with PHP 8. It's fast and straightforward. You can certainly code it like the example in the video where you're mixing HTML with PHP, but you also have the capability to make it clean. Instead, you can use React and HTML on the front end and send an HTTP request to your PHP-powered backend service, where you can implement highly robust and clean code with all the bells and whistles of today's most modern programming languages. I don't understand the example in the video; it is biased towards a poorly implemented architecture that existed 10 years ago.
    That said, I've also written apps in Java and Python and I can confidently says that no language can automatically fix if you're a terrible developer.

  • @orapelengmathebula1406
    @orapelengmathebula1406 6 месяцев назад

    2024, PHP still powers 76.5% of websites where the server-side programming language can be discerned

  • @balloftitanium3961
    @balloftitanium3961 6 месяцев назад

    I'm. a NET dev, what I can say is it depends on your use cases. Php is good enough to serve data on most application. But if your app required more comprehensive, real time or thread critical,. NET ftw. As it is built for more complex structures and performance especially if it required to access windows os resources.

    • @mosti72
      @mosti72 5 месяцев назад

      You can technically compile PHP to dotnet (C#), although I've never tried it so idk how complicated it is to use the tool

    • @balloftitanium3961
      @balloftitanium3961 5 месяцев назад

      @mosti72 are you sure about that? so it can convert DI, middleware pipeline, services, identity, ef core & those. net special features to the php?

    • @mosti72
      @mosti72 5 месяцев назад

      @@balloftitanium3961 like I said, I've never tried the tool, so I can't vouch for it, but if you're curious, the name is peachpie. It's on GitHub.

  • @RadenVijaya
    @RadenVijaya 6 месяцев назад

    Most people blames their inability to code, to the language (PHP).
    Try Kotlin instead and you will curse more.

  • @New-ei8qp
    @New-ei8qp 11 дней назад

    I could write bad code in any language and go "see, look, this language is bad", which is what you just did.

  • @pangzlab
    @pangzlab 5 месяцев назад

    Said by someone who never really done a "professional development" using PHP.

  • @pmrebel2733
    @pmrebel2733 6 месяцев назад

    Php is dead but powers 75percent of the web. Noise makers wont stop our love for php. Php 8 is on the same par with any other programing language

  • @marcorademan8433
    @marcorademan8433 6 месяцев назад

    Php is just is a tool, altough a blunt one. Bad code is bad code. It's the cheapest option for hosting websites. Stop the hate! There is nothing wrong with adding to your language skill set.

  • @R_Y_Z_E_N
    @R_Y_Z_E_N 5 месяцев назад

    Laravel is actually very good for a medium scale project and out of the box it has lot of features than node js

  • @olhoTron
    @olhoTron 6 месяцев назад

    Php is bad on purpose! True story: someone wrote a RFC to bring block scoped variables to the language and they rejected it saying it would incentivise longer functions and make code unreadable (wtf?)
    they also said they dont want to bring new keywords, meanwhile they add a lot of new keywords with every release just to try and imitate java's OO while neglecting the small things the make a big difference

  • @Nanagos
    @Nanagos 10 месяцев назад +1

    It felt like I was watching this video at 2x the speed, but I wasn't.

    • @EnhanceCode
      @EnhanceCode  10 месяцев назад

      Did it feel overwhelming a bit? I feel like it still leaves you with room to understand.

    • @jeremystone6433
      @jeremystone6433 9 месяцев назад +1

      @@EnhanceCode some of the cuts trim off the beginning of words

    • @EnhanceCode
      @EnhanceCode  9 месяцев назад

      thank you@@jeremystone6433

  • @romeu_
    @romeu_ 6 месяцев назад +1

    Learn laravel

  • @glennraya
    @glennraya 4 месяца назад

    The PHP code samples are like how you write PHP 10+ years ago (Yeah I remember). PHP is so different now. This is misleading. 😅 Anyway, you got the views though.

  • @naspy971
    @naspy971 6 месяцев назад

    The code example used to illustrate php is a piece of s****. That's spaghetti code. Php is mostly used in OOP contexts nowadays

  • @felixakingbulu588
    @felixakingbulu588 5 месяцев назад

    Does it foot the bills?

  • @j.r.r.tolkien8724
    @j.r.r.tolkien8724 10 месяцев назад +2

    I don't get the whole "PHP is easy" argument. Never found it easier than something like JavaScript. The $ is so frustrating as well as -> and other syntax.

    • @someverycool4552
      @someverycool4552 10 месяцев назад

      Do you think it would be easier to develop a full stack application using NodeJS vs PHP?

    • @j.r.r.tolkien8724
      @j.r.r.tolkien8724 10 месяцев назад +1

      @@someverycool4552 That's exactly what I think. Don't you think it's easier to spin out a server in seconds using NodeJS than it is to set up something like Apache? I mean to a complete beginner. To me it's pretty obvious.

    • @crabort
      @crabort 10 месяцев назад +1

      Depends on what you're using in PHP/Node. Node makes it easy because of all the packages, but then you don't have a fundamental understanding of the code you're using. Apache is installed on almost every Linux machine by default, so it is fairly easy to get started.
      If you're installing on Windows, you still need to go through setup of Node, the same you would with XAMPP/WAMP

    • @someverycool4552
      @someverycool4552 10 месяцев назад

      @@j.r.r.tolkien8724
      I haven't done PHP in 5 years, and I have been on JS ecosystem since then, but I still feel like PHP is easier, faster and more productive to develop with.
      The thing about each request being a separate run, is one of the things that makes it actually very easy. When an error happens you know why.
      For example with Express if you have async things going on, promises, etc sometimes it's really difficult to understand how it happened. Express doesn't really handle errors out of the box very well.
      It seems like in order to get to the first hello world, both are fairly similar.

    • @j.r.r.tolkien8724
      @j.r.r.tolkien8724 10 месяцев назад

      Is there an axios equivalent in the PHP ecosystem? I don't know much about it. As far as I recall, when I tried PHP years ago I had faced difficulties with xampp on both linux and windows as well as WAMP. You'd think that it's easy for a beginner to get things running but nah, it's not just about installation. @@crabort

  • @udayworldwide
    @udayworldwide Месяц назад

    The video creator hates his grand pa the most to his heart

  • @jppcouto
    @jppcouto 6 месяцев назад

    People who say PHP is terrible clearly don't know Laravel or Symphony.

  • @komismo
    @komismo 4 месяца назад

    I custom compile PHP, its fast if you know what you're doing.

  • @ohwow2074
    @ohwow2074 6 месяцев назад

    I learned Laravel. It was clean and comfortable to be honest.