views:

61

answers:

3

I'm looking for online PHP interpreter / tester (something like http://jsfiddle.net/ for JavaScript).

Are you familiar with one ?

+4  A: 

Try:

NullUserException
+3  A: 

http://codepad.viper-7.com/

The system allows full access to all PHP functions - no restrictions and no safe mode. Many common extensions are loaded and available for use. Security is provided on an OS level by strict user permissions inside a setuid chroot jail protected by system call tracing, which should all be transparent to PHP code. You can write files in the /temp folder, but they will be periodically deleted.

The Profile code option will use XDebug to trace every function call in your code and measure the time taken, and will also use VLD to generate a full opcode listing to see how PHP executes your code 'under the hood'!

Artefacto
+1  A: 

You can also host your own:

Gordon
This is also very nice !
Misha Moroshko