Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a PHP Sandbox, something like JSFiddle is to JS?

share|improve this question
1  
Quite a good question here! – Shikiryu Sep 29 '10 at 14:33
1  
Excellent question for s/o - why on earth was it closed? very strange – Oversteer Aug 15 '12 at 12:35
2  
phpfiddle.org – fab Feb 13 at 20:53
2  
great question thank you very much! – Артём Царионов Mar 3 at 18:58
2  
So, once again, even though this is useful and is actually what I came looking for, it's not constructive. How constructive of you to close it. – CAD bloke Apr 21 at 5:37
show 4 more comments

closed as not constructive by BoltClock Jul 6 '12 at 11:42

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

8 Answers

up vote 38 down vote accepted

The Runkit extension aims to provide a PHP Sandbox:

Instantiating the Runkit_Sandbox class creates a new thread with its own scope and program stack. Using a set of options passed to the constructor, this environment may be restricted to a subset of what the primary interpreter can do and provide a safer environment for executing user supplied code.

If you dont want to use Runkit but still want a PHP Console on your server, try

If you are just looking for an online site to play around with PHP code, try

share|improve this answer
4  
and if you are just looking for a solution, which let your site users to play around with PHP code, try Ideone API – kuszi Feb 2 '11 at 20:54

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

share|improve this answer

Found this from a Google search,

http://writecodeonline.com/php/

share|improve this answer

Add this one to the list: http://sandbox.onlinephpfunctions.com You can choose the php version and save and share your data.

share|improve this answer

http://c9.io - Not a sandbox but and online IDE that I quite like so far. Supports a LOT more than PHP.

share|improve this answer

I personally prefer eXorithm's. Similar to JSFiddle and has custom output formats.

http://www.exorithm.com/algorithm/sandbox

share|improve this answer
3  
There is a really good one called PHP Assist: phpassist.com Its pretty new – GuySoft Jan 30 at 9:24

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