
I’m keeping a log in this document to keep trace about what I do: maybe it could help someone else.Ībout setting up Apache, PHP and MySQL: I know, there are many good and ready-to-use WAMP systems out there,īut I prefer a manual setup of my PC from A to Z, in order to keep my finger on the pulse and to fine-tune everything. Windows 10 has just been released and I took the opportunity to buy a new SSD to replace my old magnetic HD and to perform a fresh install of everything, I know, someone will stick up their nose reading this, but yes, I develop my PHP projects under Windows.īy the way, since I have all the above wonderful stuff without any issue, well… who cares. This is a must if you write code for a wide range of different systems. check my code with different versions of PHP.I don’t want to place hundreds of echo to see what’s happening and what functions get executes:ĭuring the execution of PHP, I want to see at a certain point what’s the value of the defined variables and follow the execution flow step-by-step I don’t want to place var_dumps to see the value of a variable at a certain point, So I need an immediate way to see a short description of every function and its parameters. I don’t want to remember the meaning and the order of every function parameters (was it strpos($haystack, $needle) or strpos($needle, $haystack)?), So I do really need a way to simply start typing something and having a list of functions and methods. I don’t want to manually type every function name (it takes time and leads to typos), I don’t want to remember all the methods of a class,

I don’t want to remember the exact spelling of all those PHP functions, When I develop PHP projects, I need the following features:
