Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for a PHP codepad like codepad.org or ideone.com with support for PHP 5.1.

From some question/answer here on SO some month ago I remember such a thing exists (existed?) but I was not able to retrieve the info again and my internet search did not reveal any.

Does somebody remember the name/address of a PHP 5.1 codepad?

(Codepad: Execute a PHP snippet and share it online on a webserver)

share|improve this question
18  
Any reason why you have to use a 6-year old version of a programming language? It's not like it costs money to upgrade. – autibyte Oct 5 '11 at 12:28
2  
2  
I have my own "codepad" running with 5.1, but it's not open to the internet. Do you need this ongoing or just to run something one-off? – salathe Oct 5 '11 at 18:04
1  
I would like to see some of the current players (CodePad, ideone, Viper 7, others?) provide this type of functionality, or a new player to do so. When you're writing an application that must work on legacy versions, having the chance to work on something like this would be very valuable, especially if it were a type of checkbox-each-version to run against. – Jared Farrish Oct 9 '11 at 2:56
2  
@todda.speot.is: Trust the terrain, not the map. – hakre Oct 9 '11 at 2:59
show 12 more comments

closed as not constructive by Neal, Jon B, bažmegakapa, Fraser, Maerlyn Dec 21 '12 at 23:41

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.

5 Answers

up vote 8 down vote accepted
+500

Although I like the PHP codepad listing on your blog alot I am really sorry to say that there is currently no codepad out there for PHP 5.1. Someone has to tell you the truth.

share|improve this answer

There are the following codepads:

Site                PHP Version    Notes
----------------------------------------------------------------------------------------
kodingen.com        PHP 5.3.1      Creating a file for guests does not work.
coderun.com         PHP 5.3.1      Not a real codepad.
freephptest.com     PHP 5.2.17
phpcodepad.com      PHP 5.3.6
writecodeonline.php PHP 4.4.9

And that are some others which either require registration or a PHP interpreter on your own or a code-store on your own:

Site                PHP Version    Notes
----------------------------------------------------------------------------------------
codeanywhere.net    PHP_           PHP version of server connected to through ftp or dropbox
cloud9ide.com       PHP_           Researching - Hosts files on github or mercury
orionhub.org        PHP_           Researching - Beta version
shiftedit.net       PHP_           PHP version of server connected to through ftp or dropbox
compilr.com         PHP 5.3.4

Then there is also phpanywhere (now codeanywhere.net). unsure of what they use for php, site requires registration.

share|improve this answer
coderun.com has PHP Version 5.3.1 as far as I can say. Please double check. Additionally, I think you can not share projects publicly with others (and it take long to load for a quick code + share across peers). – hakre Oct 10 '11 at 20:32
Well then they need to update their documentation. There really is any left out there that run 5.1.* I have looked at almost 20 different online codepads. There is not much difference between a lot of code fixes and a dozen or two new/removed prebuilt funcitons/variables (give or take). The only suggestion I can give from here is to create your own server with php 5.1. I personally have a virtual machine running with a few different php versions that I commonly run into creating/editing sites. 4.4.9 and 5.2.16 and 5.3.7. – James Williams Oct 10 '11 at 20:44
There's no need to argue about the wording of the question, right? And actually I'm looking for facts, not docs. – hakre Oct 10 '11 at 20:52

Even though this question is six months old, I'd like to point out that the accepted answer is incorrect, as there is an online codepad that executes user code on a large number of PHP versions, including PHP 5.1.0.

The codepad is located at: http://3v4l.org/

In fact, as of this post, the following versions are tested:

  1. 4.3.0 - 4.3.11
  2. 4.4.0 - 4.4.9
  3. 5.0.0 - 5.0.5
  4. 5.1.0 - 5.1.6
  5. 5.2.0 - 5.2.17
  6. 5.3.0 - 5.3.19
  7. 5.4.0 - 5.4.9
share|improve this answer

Viper 7's Codepad currently has support for 5.2, 5.3, 5.4 beta and trunk.

I think that's as close as you'll get for the time being.

share|improve this answer
I do remember there is/was a PHP 5.1 one, not that long ago (some months). I know about viper codepad and others (did my homework), but for this question, this is not the right answer, I'm specifically looking for a PHP 5.1.x codepad. – hakre Oct 5 '11 at 17:44

Here is a simple eval, put it to a server with php 5.1.

<?php
if(!empty($_POST)){
    if(get_magic_quotes_gpc())
        echo eval_php(stripslashes($_POST['content']));
    else{
        echo eval_php($_POST['content']);
    }
}

function eval_php($content)
{
    ob_start();
    eval("?>$content<?php ");
    $output = ob_get_contents();
    ob_end_clean();
    return $output;
}
?>
share|improve this answer
2  
xdazz, you have forgotten to add the server to your answer ;) – hakre Oct 14 '11 at 10:06

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