Jump to content

What is the best coding editor program?


MjM8082

Recommended Posts

Well "best" is subjective. I prefer PHPEdit by WaterProof: http://www.phpedit.com/en

 

There are way too many features to list. But, my favorite is that, in addition to auto-complete for functions, once the function name is complete and you are inside the parameter list of a function - there is a hover block that shows you the function name, a description of what it does, as well as a list of the parameters. There are inconsistencies in how some functions expect their arguments and I hate having to look up the argument list.

 

Case in point: array_map() and array_walk(). These perform similar processes. But, the first two arguments are switched.

 

array array_map ( callable $callback , array $arr1 [, array $... ] )

 

 

bool array_walk ( array &$array , callable $funcname [, mixed $userdata = NULL ] )

 

maybe there is some logic to that, but I can never remember it. So, I really appreciate that feature in PHPEdit.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.