3v4l.org

run code in 300+ PHP versions simultaneously
<?php class TableDef { public $name; public $display_name; public $notify_insert; public $fields = array(); public $indexes = array(); public $primary_keys = array(); public $auto_increment = ""; public $connection = 1; /** * Constructor * * @param string $name Name * @param string $display_name Display name * @param bool $notify_insert Notify on an Insert? */ public function TableDef($name, $display_name, $notify_insert) { $this->name = $name; $this->display_name = $display_name; $this->notify_insert = $notify_insert; } }
Output for git.master_jit, git.master, 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:
31.08 ms | 405 KiB | 5 Q