12

Last Month codepad.viper-7.com was down and a lot of stackoverflow answers with code pasted there became broken include some of mine. When it was back all scripts where lost.

Am looking for a free anonymous alternative to codepad.viper-7.com where i can test php scripts with minimal restriction (fopen, curl , mb_strlen etc); on different versions.

There so many of them recommended here but its difficult to find suitable replacement to codepad.viper-7.com

Simple Testing Script

<?php
   echo strlen(file_get_contents("http://google.com"));
?>

Output

Question:

Is there any anonymous alternative with minimal restrictions ?

Baba
  • 94,024
  • 28
  • 166
  • 217

1 Answers1

3

You can try phpfiddle.org. But be aware that http://google.com is redirected to https://www.google.com, so file_get_contents will return 301 Moved.

Peter Krejci
  • 3,182
  • 6
  • 31
  • 49