3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * getCols * * Takes an array of associative arrays and combines them to get * the columns * * @author Joe Richardson * @access public * @return object Instance of DB or Null */ function getCols(array $data, $col = NULL) { $d = (array)call_user_func_array('array_merge_recursive',$data); return ($col === NULL)?$d:$d[$col]; } $a = array( array( 1 , 'foo' , date('m-d-Y') ) , array( 2 , 'bar' , date('m-d-Y') ) , array( 3 , 'george' , date('m-d-Y') ) , array( 4 , 'burdell' , date('m-d-Y') ) ); if(function_exists('array_column')) { echo('array_column '); $b = array_columns($a, 2); }else { echo('getCols '); $b = getCols($a, 2); } var_dump($b);
Output for git.master, git.master_jit, rfc.property-hooks
array_column Fatal error: Uncaught Error: Call to undefined function array_columns() in /in/AhvPW:51 Stack trace: #0 {main} thrown in /in/AhvPW on line 51
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:
39.14 ms | 401 KiB | 8 Q