3v4l.org

run code in 300+ PHP versions simultaneously
<?php $data='intervals [1]: xmin = 0 xmax = 13.139997023062838 text = "" intervals [2]: xmin = 13.139997023062838 xmax = 14.763036269953904 text = "Cities are like siblings in a large polygamous family." intervals [3]: xmin = 14.763036269953904 xmax = 17.01 text = ""'; $pat='/xmin = (\S+)\s+xmax = (\S+)\s+text = "([^"]*)/'; if(preg_match_all($pat,$data,$m,PREG_SET_ORDER)){ $assoc_multidim=array_map(function($a){return array_combine(['xmin','xmax','text'],array_slice($a,1));},$m); var_export($assoc_multidim); }else{ echo "substring extraction failed"; }
Output for git.master, git.master_jit, rfc.property-hooks
array ( 0 => array ( 'xmin' => '0', 'xmax' => '13.139997023062838', 'text' => '', ), 1 => array ( 'xmin' => '13.139997023062838', 'xmax' => '14.763036269953904', 'text' => 'Cities are like siblings in a large polygamous family.', ), 2 => array ( 'xmin' => '14.763036269953904', 'xmax' => '17.01', 'text' => '', ), )

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:
129.46 ms | 406 KiB | 5 Q