tags:

views:

28

answers:

1

Hi

I looking for interactive php appliaction like linqpad for c# where i can test code snippets.

Thanks in advice

+2  A: 

Assuming you have PHP's CLI installed, just do php -a at the command line (preferably on an OS with a decent shell). This launches an interactive mode. Start with <?php and you're good to go.

J Cooper