How to show PHP output in netbeans IDE output window, not in a web browser

I would like to run a PHP file or code in neatbeans and show the output in the output console, for example, in the zend framework F5.

+4
source share
1 answer

Open the file you want to work with. Right-click the project name in the project tab in the upper left corner of the netbeans window. Choose Configuration Setup> Configure, click Run Configuration. In the drop-down menu, select a script (run on the command line)

In the options window, select the php tab. Set the location of your php 5 interpreter and check the output / editor window checkbox.

+5
source

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


All Articles