Feature request ide
Does anyone know of a ide that supports the following features:
Class insight (as in phped across files and php5 support).
Function hint popup (as in most php ide's).
Project Management.
Code folding (as in what phped is missing imho).
Class/function browser.
and Syntax highlighting.
I've tried several solutions but all lack at least one of the features.
phped comes very close but is a bit unstable and I really miss code folding.
the class insight in phped is very close to perfect, it reconizes if you declare class variables to another class in the constructor of the first class, and I want that to work with any other ide as well.. eg:
class Test2 {
public $whatever;
}
class Test1 {
public $instanceOfTest2;
function Test1() {
$this->$instanceOfTest2 = new Test2;
}
$myVar = new Test1;
$myVar->$instanceOfTest2-> [And here the Autocomplete (Class insight) have to show me the $whatever var]
regards, ungamed.
Last edited by ungamed; 2006-11-02 at 08:57 AM.
|