
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:
