3v4l.org

run code in 300+ PHP versions simultaneously
<?php $schema['ff_acl'] = array( 'description' => 'Table storing association codes tied to a user id.', 'fields' => array( 'aid' => array( 'type' => 'serial', 'unsigned' => TRUE, 'not null' => TRUE ), 'uid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE ), 'nid' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE ), 'sku' => array( 'type' => 'varchar', 'length' => 64, 'not null' => FALSE, 'description'=> 'The products sku/model number.' ), 'order_id' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE ), 'expires' => array( 'type' => 'int', 'unsigned' => TRUE, 'not null' => FALSE, 'description'=> 'Access expiration time.' ), ), 'primary key' => array('aid') ); print_r($schema);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [ff_acl] => Array ( [description] => Table storing association codes tied to a user id. [fields] => Array ( [aid] => Array ( [type] => serial [unsigned] => 1 [not null] => 1 ) [uid] => Array ( [type] => int [unsigned] => 1 [not null] => 1 ) [nid] => Array ( [type] => int [unsigned] => 1 [not null] => 1 ) [sku] => Array ( [type] => varchar [length] => 64 [not null] => [description] => The products sku/model number. ) [order_id] => Array ( [type] => int [unsigned] => 1 [not null] => 1 ) [expires] => Array ( [type] => int [unsigned] => 1 [not null] => [description] => Access expiration time. ) ) [primary key] => Array ( [0] => aid ) ) )

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:
66.82 ms | 405 KiB | 8 Q