After reading Fontomas, "visual programming programming with Editplus" (see http://www.9cbs.net/develop/Article/15/15416.shtm), the author is a PHP programmer, germination EditPlus debugging the idea of the PHP program. After my test and N (n> 10) test, I finally enabled the EDITPLUS to achieve this feature. The specific implementation method is as follows:
1. Open EditPlus, select "Tool" -> Configure User Tools ... (Configure User Tools) "menu (the version now used is V2.11 English version, this site (http://www.hioday). The COM) download section has a download using a Chinese version to see the picture comparison below).
2. Select "Add Tool -> Program" in the pop-up window, give a good name to the new program, such as here we use "debug php", entered in MenuteXT (Menu Text) Debug PHP. Click on the button on the right side of "Command" to find the path where your php.exe is "C: /PHP/Php.exe". Click "Argument" to the right side of the right side to select FilePath, and finally select the checkbox in front of "Capture Output" before.
3. Test now, create a new PHP file, press shortcut Ctrl 1 to activate the tools we set up (if you set multiple tools, shortcuts may vary), now you can see it already Working properly. But there is still a little less ideal: If your PHP program is wrong, you will prompt you to make a short error, click this line prompt, editplus is always prompting you to find a certain file, whether to create new. Next, we have to correct this feature. 4. Open the Just Owner Tool Settings window and find the "Debug PHP" tool just set. Click on the "Output Pattern ..." button next to the Capture Output check box, a form that defines the output mode is popped up, and "Use Default Output Pattern" in front of "use default output mode)" The check box is removed, entered in the text box of "Regular Expression" this "^. In ( )" (not included), careful Friends may find that the syntax of the regular expressions used here. Then, select "Tagged Expression 1" in the "File Name File Name" drop-down menu, that is, the first parameter in the upper regular expression, "line number" drop-down menu item selects "Tagged Expression 2", "Column" drop-down item remains empty. Then save the settings.
5. Ok, let's try it now, double-click the number of rows, editplus automatically activate the error file, and position the cursor to the wrong line, is it particularly convenient ?! (The picture can click to enlarge)
Now, EditPlus has been "transformed", it is already possible to debug PHP files, although it is not a "visual" interface, but for some normal applets, it is very easy to use. EditPlus is really a good tool that is not much, if you have any skills, don't forget everyone to share it. ^ O ^