3v4l.org

run code in 300+ PHP versions simultaneously
<?php // SpaceBoard - the board with support for spaces // Copyright (C) 2012 GlitchMr // This is sanity check. It detects lack of PHP support. Ignore it when // working on the code. // > PHP is not configured correctly. <!-- // Also, this file should expect at least PHP 4.0 in syntax, as it's used to // redirect into installer which notices it itself. if (!file_exists('storage/sql.php')) { header('Location: install'); exit; } require 'storage/sql.php'; require 'storage/config.php'; require 'lib/basics.php'; require 'lib/plugins.php'; // Please note that only change made at runtime of init is removing // magic_quotes_gpc side-effects, otherwise nearly nothing exists and // you're encouraged to use some moment after initialization. This // bucket is intended for things which should run at beginning and // functions which overwrite SpaceBoard functions. $bucket = 'init'; require 'lib/pluginload.php'; $lang = 'en'; $theme = 'spaceboard'; require 'lib/i18n.php'; require 'lib/sql.php'; require 'lib/functions.php'; require 'lib/twig.php'; $bucket = 'pagename'; require 'lib/pluginload.php'; if (!isset($page)) { $page = issetor($_GET['page'], 'main'); } if (preg_match('/[^\w]/', $page)) { $page = 'invalid_page'; } $bucket = "page_$page"; if (!require 'lib/pluginload.php') { if (!file_exists("pages/$page.php")) { $page = 'invalid_page'; } require "pages/$page.php"; }
Output for git.master, git.master_jit, rfc.property-hooks
Warning: file_exists(): open_basedir restriction in effect. File(storage/sql.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/LJVGF on line 12 Warning: Cannot modify header information - headers already sent by (output started at /in/LJVGF:12) in /in/LJVGF on line 13

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
44.54 ms | 401 KiB | 8 Q