3v4l.org

run code in 300+ PHP versions simultaneously
<?php $d = array( array( "id", "int(10) unsigned", "NO", "PRI", "auto_increment" ), array( "title", "varchar(32)", "NO" ), array( "author", "varchar(32)", "NO" ), array( "category", "tinyint(3) unsigned", "NO" ), array( "date", "datetime", "NO" ), array( "post_ip", "int(10) unsigned", "NO" ), array( "approved_by", "varchar(32)", "NO" ), array( "text", "text", "NO" ) ); $cols = array(); $rows = 0; foreach ($d as $row) { ($rows < count($row) && $rows = count($row)); foreach($row as $id => $col) { (!isset($cols[$id]) && $cols[$id] = 0); ($cols[$id] < strlen($col) && $cols[$id] = strlen($col)); } } foreach ($d as $row) { $row = array_pad($row,$rows,''); foreach ($row as $colid => &$col) $col = str_pad($col, $cols[$colid]); echo implode($row," # ") . "\n"; }
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught TypeError: implode(): Argument #2 ($array) must be of type ?array, string given in /in/ZhjZ5:34 Stack trace: #0 /in/ZhjZ5(34): implode(Array, ' # ') #1 {main} thrown in /in/ZhjZ5 on line 34
Process exited with code 255.
Output for 7.4.0 - 7.4.25, 7.4.27 - 7.4.33
Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /in/ZhjZ5 on line 34 id # int(10) unsigned # NO # PRI # auto_increment Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /in/ZhjZ5 on line 34 title # varchar(32) # NO # # Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /in/ZhjZ5 on line 34 author # varchar(32) # NO # # Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /in/ZhjZ5 on line 34 category # tinyint(3) unsigned # NO # # Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /in/ZhjZ5 on line 34 date # datetime # NO # # Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /in/ZhjZ5 on line 34 post_ip # int(10) unsigned # NO # # Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /in/ZhjZ5 on line 34 approved_by # varchar(32) # NO # # Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /in/ZhjZ5 on line 34 text # text # NO # #
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.26
id # int(10) unsigned # NO # PRI # auto_increment title # varchar(32) # NO # # author # varchar(32) # NO # # category # tinyint(3) unsigned # NO # # date # datetime # NO # # post_ip # int(10) unsigned # NO # # approved_by # varchar(32) # NO # # text # text # NO # #
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected '&', expecting T_VARIABLE or '$' in /in/ZhjZ5 on line 33
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected '&', expecting T_VARIABLE or '$' in /in/ZhjZ5 on line 33
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_VARIABLE' or `'$'' in /in/ZhjZ5 on line 33
Process exited with code 255.

preferences:
300.84 ms | 401 KiB | 460 Q