3v4l.org

run code in 300+ PHP versions simultaneously
<?php session_start(); include('pdo.php'); require_once 'tools/HTMLPurifier.standalone.php'; $editFlag = $_POST['editFlag'] ?? false; $contentID = $_POST['id'] ?? false; $userContent = $_POST['userContent'] ?? false; $section = 1; $config = HTMLPurifier_Config::createDefault(); $purifier = new HTMLPurifier($config); $clean_html = $purifier->purify($userContent); if ($editFlag != "1"){ $stmt = $db->prepare("INSERT INTO userContent (section, author, content) VALUES (:section, :author, :content)"); $stmt->execute(['section' => $section, 'author' => $author, 'content' => $content]); } else { $stmt = $db->prepare("UPDATE userContent SET section=:section, author=:author, content=:content WHERE id=:contentID"); $stmt->execute(['section' => $section, 'author' => $author, 'content' => $content, 'contentID' => $contentID]); } ?>
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/Jb5Ga on line 3 Warning: include(pdo.php): Failed to open stream: Operation not permitted in /in/Jb5Ga on line 3 Warning: include(): Failed opening 'pdo.php' for inclusion (include_path='.:') in /in/Jb5Ga 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/Jb5Ga on line 4 Warning: require_once(tools/HTMLPurifier.standalone.php): Failed to open stream: Operation not permitted in /in/Jb5Ga on line 4 Fatal error: Uncaught Error: Failed opening required 'tools/HTMLPurifier.standalone.php' (include_path='.:') in /in/Jb5Ga:4 Stack trace: #0 {main} thrown in /in/Jb5Ga on line 4
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:
34.32 ms | 402 KiB | 8 Q