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(); foreach ($d as $row) { foreach($row as $id => $col) { (!isset($cols[$id]) && $cols[$id] = 0); ($cols[$id] < strlen($col) && $cols[$id] = strlen($col)); } } print_R($cols); foreach ($d as $row) { foreach ($row as $colid => &$col) $col = str_pad($col, $cols[$colid],"k"); echo implode($row," # ") . "\n"; } /* id # int(10) unsigned # NO # PRI # auto_increment # [19:44] <teehee> title # varchar(32) # NO # [19:44] <teehee> author # varchar(32) # NO # [19:44] <teehee> category # tinyint(3) unsigned # NO # [19:44] <teehee> date # datetime # NO # [19:44] <teehee> post_ip # int(10) unsigned # NO # [19:44] <teehee> approved_by # varchar(32) # YES # [19:44] <teehee> text # text # NO # */
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
Array ( [0] => 11 [1] => 19 [2] => 2 [3] => 3 [4] => 14 ) Fatal error: Uncaught TypeError: implode(): Argument #2 ($array) must be of type ?array, string given in /in/upO37:33 Stack trace: #0 /in/upO37(33): implode(Array, ' # ') #1 {main} thrown in /in/upO37 on line 33
Process exited with code 255.
Output for 7.4.0 - 7.4.33
Array ( [0] => 11 [1] => 19 [2] => 2 [3] => 3 [4] => 14 ) Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /in/upO37 on line 33 idkkkkkkkkk # int(10) unsignedkkk # NO # PRI # auto_increment Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /in/upO37 on line 33 titlekkkkkk # varchar(32)kkkkkkkk # NO Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /in/upO37 on line 33 authorkkkkk # varchar(32)kkkkkkkk # NO Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /in/upO37 on line 33 categorykkk # tinyint(3) unsigned # NO Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /in/upO37 on line 33 datekkkkkkk # datetimekkkkkkkkkkk # NO Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /in/upO37 on line 33 post_ipkkkk # int(10) unsignedkkk # NO Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /in/upO37 on line 33 approved_by # varchar(32)kkkkkkkk # NO Deprecated: implode(): Passing glue string after array is deprecated. Swap the parameters in /in/upO37 on line 33 textkkkkkkk # textkkkkkkkkkkkkkkk # 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.38, 7.0.0 - 7.0.33, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33
Array ( [0] => 11 [1] => 19 [2] => 2 [3] => 3 [4] => 14 ) idkkkkkkkkk # int(10) unsignedkkk # NO # PRI # auto_increment titlekkkkkk # varchar(32)kkkkkkkk # NO authorkkkkk # varchar(32)kkkkkkkk # NO categorykkk # tinyint(3) unsigned # NO datekkkkkkk # datetimekkkkkkkkkkk # NO post_ipkkkk # int(10) unsignedkkk # NO approved_by # varchar(32)kkkkkkkk # NO textkkkkkkk # textkkkkkkkkkkkkkkk # NO
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected '&', expecting T_VARIABLE or '$' in /in/upO37 on line 31
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/upO37 on line 31
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_VARIABLE' or `'$'' in /in/upO37 on line 31
Process exited with code 255.

preferences:
279.07 ms | 401 KiB | 424 Q