3v4l.org

run code in 300+ PHP versions simultaneously
<?php $geos = array( array( "type"=> "CITY", "state"=> "TX", "city"=> "Austin" ), array( "type"=> "CITY", "state"=> "MI", "city"=> "East Lansing" ), array( "type"=> "CITY", "state"=> "TX", "city"=> "Houston" ) ); $geos = array( array( "type" => "DMA", "dma" => 635 ), array( "type" => "DMA", "dma" => 618 ), array( "type" => "DMA", "dma" => 803 ) ); $geos = array( array( "type" => "STATE", "state" => "TX" ), array( "type" => "STATE", "state" => "MI" ), array( "type" => "STATE", "state" => "CA" ) ); // figure out type $geoValues = array(); $geoTypeLowercase = count($geos) ? strtolower($geos[0]['type']) : null; if ($geoTypeLowercase === 'city') { $geoValues = array_map(function($geo) { return $geo['city'] . ', ' . $geo['state']; }, $geos); } else if (in_array($geoTypeLowercase, array('state', 'dma'))) { $geoValues = array_map(function($geo) use ($geoTypeLowercase) { return $geo[$geoTypeLowercase]; }, $geos); } if (count($geoValues)) { $geoType = 'geoType' . ucwords($geoTypeLowercase); print_r($geoType); print_r($geoValues); }
Output for git.master, git.master_jit, rfc.property-hooks
geoTypeStateArray ( [0] => TX [1] => MI [2] => CA )

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:
33.75 ms | 401 KiB | 8 Q