| If you are using PHP 7.x for your side-project or main product, what has been your experience? - has speed of performance ever been an issue? - how easy have your found it to deploy (and keep up-to-date) PHP apps on the server Overall, do you recommend PHP 7.x for new web projects? Your thoughts appreciated. Thank you. |
I'll highly recommend that you spend some time learning composer first. That is a must for any serious php development.
Then there are optional things you can learn like a framework like laravel, symfony, etc. My personal opinion is to stay away from it since I have found that a router is mostly all you need to get started quickly. Often times the headache to configure and debug the framework far exceeds the utility of it. So my own personal preference is to just use composer and a router and native PHP. Keeps things simple, easy to debug and super easy to deploy. But YMMV.