Skip to main content

Online PHP interpreter / tester



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





Are you familiar with one ?


Comments

  1. 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'!

    ReplyDelete
  2. Try:


    http://www.codepad.org
    http://www.ideone.com

    ReplyDelete
  3. You can also host your own:


    Jordi Boggiano's Blog - PHP Console in Your Browser
    http://github.com/seldaek/php-console

    ReplyDelete
  4. Found this from a Google search,

    http://writecodeonline.com/php/

    ReplyDelete

Post a Comment

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?