3v4l.org

run code in 300+ PHP versions simultaneously
<?php include_once("connection.php"); $result = mysql_query('select * from table'); if (!$result) { die('Query failed: ' . mysql_error()); } /* get column metadata */ $i = 0; while ($i < mysql_num_fields($result)) { echo "Information for column $i:<br />\n"; $meta = mysql_fetch_field($result, $i); if (!$meta) { echo "No information available<br />\n"; } echo "<pre> blob: $meta->blob max_length: $meta->max_length multiple_key: $meta->multiple_key name: $meta->name not_null: $meta->not_null numeric: $meta->numeric primary_key: $meta->primary_key table: $meta->table type: $meta->type unique_key: $meta->unique_key unsigned: $meta->unsigned zerofill: $meta->zerofill </pre>"; $i++; } mysql_free_result($result); ?>
Output for git.master, git.master_jit, rfc.property-hooks
Warning: include_once(): open_basedir restriction in effect. File(connection.php) is not within the allowed path(s): (/tmp:/in:/etc) in /in/VEnqS on line 2 Warning: include_once(connection.php): Failed to open stream: Operation not permitted in /in/VEnqS on line 2 Warning: include_once(): Failed opening 'connection.php' for inclusion (include_path='.:') in /in/VEnqS on line 2 Fatal error: Uncaught Error: Call to undefined function mysql_query() in /in/VEnqS:3 Stack trace: #0 {main} thrown in /in/VEnqS on line 3
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:
37.97 ms | 401 KiB | 8 Q