Which IDE is supported by PHP 7?

8

Does anyone know of any IDE (or simpler code editor) with PHP 7 support?

I use NetBeans, but it looks like PHP 7 support on it may be added in future releases, but that's still unclear.

I'm looking for an IDE or code editor that has PHP 7 code complementing and looks for names of variables, methods, functions, classes, etc. in the project files, similar to NetBeans. Does anyone know of any, preferably free?

    
asked by anonymous 08.02.2016 / 20:42

2 answers

1

I'm currently using Netbeans 8.2 It comes with support for PHP7. You can download the version only for PHP or the All that already comes with everything embedded. link

    
09.11.2016 / 17:22
9

Some of the new features of PHP7

  • Anonymous Classes.

  • Return type declaration.

  • Operator null coalesce ( ?? )

  • spaceshipe operator ( <=> )

The PHPStorm 10 has the syntax of PHP7 is a paid IDE. An option at no cost is the eclipse however an added setting is required.

To enable PHP7 support window>preference in the treeview on the right side go to PHP>Interpreter choose PHP7 and give ok.

    
08.02.2016 / 20:48