3v4l.org

run code in 300+ PHP versions simultaneously
<?php $geos = array( array( "type" => "STATE", "state" => "TX" ), array( "type" => "STATE", "state" => "MI" ), array( "type" => "STATE", "state" => "CA" ) ); $geos = array( array( "type" => "DMA", "dma" => 635 ), array( "type" => "DMA", "dma" => 618 ), array( "type" => "DMA", "dma" => 803 ) ); $geos = array( array( "type"=> "CITY", "state"=> "TX", "city"=> "Austin" ), array( "type"=> "CITY", "state"=> "MI", "city"=> "East Lansing" ), array( "type"=> "CITY", "state"=> "TX", "city"=> "Houston" ) ); // figure out type $geoValues = array(); $geoTypeUppercase = count($geos) ? $geos[0]['type'] : null; if ($geoTypeUppercase === 'CITY') { $geoValues = array_map(function($geo) { return $geo['city'] . ', ' . $geo['state']; }, $geos); } else if (in_array($geoTypeUppercase, array('STATE', 'DMA'))) { $geoValues = array_map(function($geo) use ($geoTypeUppercase) { return $geo[strtolower($geoTypeUppercase)]; }, $geos); } if (count($geoValues)) { print_r($geoTypeUppercase); $geoType = 'geoType' . ucword($geoTypeUppercase); print_r($geoType); print_r($geoValues); }
Output for git.master, git.master_jit, rfc.property-hooks
CITY Fatal error: Uncaught Error: Call to undefined function ucword() in /in/odAKT:69 Stack trace: #0 {main} thrown in /in/odAKT on line 69
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:
51.66 ms | 401 KiB | 8 Q