3v4l.org

run code in 300+ PHP versions simultaneously
<?php function printArrayStructureTest($array, $output, $breadcrumb = array()) { if(!empty($array)) { $output .= '$this->assertCount('; $output .= count($array); $output .= ', '; if(empty($breadcrumb)) { $output .= '$response'; } else { $output .= '$response[\''; $output .= implode('\'][\'', $breadcrumb); $output .= '\']'; } $output .= "\n"; foreach($array as $key => $value) { $output .= '$this->assertArrayHasKey('; $output .= "'" . $key . "'"; $output .= ', '; if(empty($breadcrumb)) { $output .= '$response'; } else { $output .= '$response[\''; $output .= implode('\'][\'', $breadcrumb); $output .= '\']'; } $output .= "\n"; if(is_array($value)) { $breadcrumb[] = $key; $this->printArrayStructureTest($value, $output); } } } return $output; } $list = array( 'transport' => array( 'plane' => array( 'boeing', 'airbus', ), 'car' => array( 'audi', 'ford' ), ), ); printArrayStructureTest($list, "");
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Using $this when not in object context in /in/BPZv1:41 Stack trace: #0 /in/BPZv1(61): printArrayStructureTest(Array, '$this->assertCo...') #1 {main} thrown in /in/BPZv1 on line 41
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.21 ms | 401 KiB | 8 Q