Which IDE supports PHP 7?

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

I use NetBeans, but it seems that PHP 7 support in it may be added in future versions, but it is still uncertain that.

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

 8
Author: UzumakiArtanis, 2016-02-08

2 answers

I am currently using Netbeans 8.2 It comes with PHP7 support. You can download the PHP-only version or the All version that already comes with everything built-in. https://netbeans.org/downloads /

 1
Author: Ibanêz, 2016-11-09 16:22:38

Some of the new features of PHP7

  • Anonymous Classes.

  • Return types declaration.

  • Coalesce null operator(??)

  • Spaceshipe Operator(<=>)

The PHPStorm 10 has surporte the syntax of PHP7 is a paid IDE. A no-cost option is the eclipse however an added configuration is required.

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

insert the description of the image here

 9
Author: rray, 2016-02-08 21:32:40