3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * A class file to connect to database */ class DB_CONNECT { // constructor function __construct() { // connecting to database $this->connect(); } // destructor function __destruct() { // closing db connection $this->close(); } /** * Function to connect with database */ function connect() { // import database connection variables require_once __DIR__ . '/db_config.php'; // Connecting to mysql database // $con = mysql_connect(DB_SERVER, DB_USER, DB_PASSWORD) or die(mysql_error()); $db = new mysqli(DB_SERVER, DB_USER, DB_PASSWORD,DB_DATABASE); if($db->connect_errno > 0){ die('Unable to connect to database [' . $db->connect_error . ']'); } else { echo "Connessione Avvenuta con successo"; } // Selecing database // $db = mysql_select_db(DB_DATABASE) or die(mysql_error()) or die(mysql_error()); // returing connection cursor return $db; } /** * Function to close db connection */ function close() { // closing db connection mysql_close(); } } ?>
Output for git.master, git.master_jit, rfc.property-hooks

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:
43.56 ms | 401 KiB | 8 Q