Any PHP editors that support syntax 5.3?

I use namespaces in the project, and the Eclipse PDT, my IDE of choice, recognizes them as syntax errors. Not only does this make its convenient error checking unsuitable, but it also destroys Eclipse PHP explorer.

5.3 features are coming in PDT 2.0, scheduled for release in December. Are there any alternatives at the moment? I am looking for a minimum of 5.3 syntax highlighting and error checking.

+4
source share
8 answers

Some threads that have been addressed by various PHP IDE developers regarding 5.3 syntax support status:

+6
source

This blog claims that PHP 5.3 support is already introduced in the latest PDT 2.1.0 integration .

+2
source

NuSphere ( http://www.nusphere.com/ ) has just released PhpED with full support for all php-5.3 features. Works great for me.

-j

+1
source

The latest version of netbeans 6.8 (beta) supports most of the new features ...

+1
source

I find Jetbrains php storm pretty good.

+1
source

Have you tried Aptana Studio or the Aptana plugin for Eclipse? I'm not sure if the Aptana PHP plugin supports it, but Aptana Studio does this. This may have what you are looking for.

0
source

This probably won't help you, but my current solution is Zend Studio 5.5 with real-time errors disabled. I cannot use the internal debugger in 5.3 projects, but everything else in the IDE still works, and the namespace code does not stand out as an error. I get to keep the code explorer and syntax highlighting and just check my code external to the IDE.

0
source
0
source

Source: https://habr.com/ru/post/1276685/


All Articles