1-How I can instantly run current php file in PhpStorm? (consider a php class file, I want just create some instants and test their methods) (I do not want to switch to browser ) 2-How can I execute PHP command in PHPstorm like PyCharm?

link|improve this question

74% accept rate
1  
that's a bit subjective as your currently edited php file might be part of a long chain of includes & requires that started at an index.php file located at the root and makes no executional sense without going through all that chain.. – Ben Oct 12 '11 at 11:08
feedback

1 Answer

up vote 2 down vote accepted

Right click in the editor, choose Run for command line script execution. If you want to test it on a web server, use Open in Browser from the same menu (you must have browser and server with mappings properly configured for this).

link|improve this answer
@ CrazyCoder Thank a lot, How can I write command directly on php command line? – Reza Oct 14 '11 at 14:28
What is PHP command line? – CrazyCoder Oct 14 '11 at 15:09
I mean: php.exe -R <code> php.net/manual/en/features.commandline.options.php – Reza Oct 14 '11 at 16:11
2  
There is no such feature in PhpStorm yet. – CrazyCoder Oct 14 '11 at 16:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.