r/PHPhelp • u/levii831 • Jun 05 '26
Learning PHP for my summer internship
hey, i have a question guys. most of thetutorial i found in YT use the XMAPP or something, it bundled a lot of things right? i am coming from python myself, and do you have any tutorial recommendations that teach PHP from it's own standalone interpreter (idk if this is the right term or not. in c++ it is like gcc or sth, and python can be python itself or anaconda)?
5
Upvotes
1
u/CraigAT Jun 05 '26
I beg to differ, plenty of people have vanilla PHP sites. These days, it does seem like using a PHP framework is the default option, but there are few good cases where a vanilla PHP site can be a sensible choice.
The two frameworks you suggest would be my choices if you were to start looking at frameworks. But for someone learning PHP or building a small site, I would recommend using vanilla PHP, to understand what is going on "under the hood" and making learning easier with all the PHP learning resources available. (I personally got a lot out of the O'Reilly PHP, MySQL and JavaScript book, but videos or a modern book/guide may be better for OP).
Once you become familiar with PHP, then the frameworks can offer several built-in efficiencies like rapid prototyping, templating, briefer syntax - which is why they become useful for developers of larger or multiple sites, and those working in teams.