3v4l.org

run code in 300+ PHP versions simultaneously
<?php session_start(); include('pdo.php'); $editFlag = $_POST['editFlag'] ?? false; $contentID = $_POST['id'] ?? false; $section = 1; require_once 'tools/HTMLPurifier.standalone.php'; $config = HTMLPurifier_Config::createDefault(); $purifier = new HTMLPurifier($config); $clean_html = $purifier->purify($_POST['userContent']); if ($editFlag != "1"){ $stmt = $db->prepare("INSERT INTO userContent (section, author, content) VALUES (:section, :author, :content)"); $stmt->bindValue(':section', $section, PDO::PARAM_INT); $stmt->bindValue(':author', $_SESSION['userID'], PDO::PARAM_INT); $stmt->bindValue(':content', $clean_html, PDO::PARAM_STR); $stmt->execute(); } else { $stmt = $db->prepare("UPDATE userContent SET section=:section, author=:author, content=:content WHERE id=:contentID"); $stmt->bindValue(':section', $section, PDO::PARAM_INT); $stmt->bindValue(':author', $_SESSION['userID'], PDO::PARAM_INT); $stmt->bindValue(':content', $clean_html, PDO::PARAM_STR); $stmt->bindValue(':contentID', $contentID, PDO::PARAM_INT); $stmt->execute(); } ?>
Output for git.master, git.master_jit, rfc.property-hooks
Warning: include(): open_basedir restriction in effect. File(pdo.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/vnI8c on line 3 Warning: include(pdo.php): Failed to open stream: Operation not permitted in /in/vnI8c on line 3 Warning: include(): Failed opening 'pdo.php' for inclusion (include_path='.:') in /in/vnI8c on line 3 Warning: require_once(): open_basedir restriction in effect. File(tools/HTMLPurifier.standalone.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/vnI8c on line 8 Warning: require_once(tools/HTMLPurifier.standalone.php): Failed to open stream: Operation not permitted in /in/vnI8c on line 8 Fatal error: Uncaught Error: Failed opening required 'tools/HTMLPurifier.standalone.php' (include_path='.:') in /in/vnI8c:8 Stack trace: #0 {main} thrown in /in/vnI8c on line 8
Process exited with code 255.

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:
47.02 ms | 402 KiB | 8 Q