3v4l.org

run code in 300+ PHP versions simultaneously
<?php $results['effects'] = array ( 0 => array ( 'label' => 'Euphoric', 'value' => 'width:100%', ), 1 => array ( 'label' => 'Relaxed', 'value' => 'width:100%', ), 2 => array ( 'label' => 'Uplifted', 'value' => 'width:92.0634920634921%', ), 3 => array ( 'label' => 'Happy', 'value' => 'width:86.7724867724868%', ), 4 => array ( 'label' => 'Creative', 'value' => 'width:84.1269841269841%', ), 5 => array ( 'label' => 'Stress', 'value' => 'width:100%', ), 6 => array ( 'label' => 'Lack of Appetite', 'value' => 'width:82.7586206896552%', ), 7 => array ( 'label' => 'Insomnia', 'value' => 'width:28.735632183908%', ), 8 => array ( 'label' => 'Muscle Spasms', 'value' => 'width:28.735632183908%', ), 9 => array ( 'label' => 'Pain', 'value' => 'width:28.735632183908%', ), 10 => array ( 'label' => 'Dry Eyes', 'value' => 'width:100%', ), 11 => array ( 'label' => 'Dizzy', 'value' => 'width:66.6666666666667%', ), 12 => array ( 'label' => 'Paranoid', 'value' => 'width:66.6666666666667%', ), 13 => array ( 'label' => 'Dry Mouth', 'value' => 'width:66.6666666666667%', ), ); if (isset($results['effects'])){ if (isset($results['effects'][0]['value'])){ $i = 0; $effectsArray = array(); foreach ($results['effects'] as $effect) { $effectsArray[] = [ 'label' => $effect['label'], 'value' => str_replace("width:", "", $effect['value']) ]; } } } var_dump($effectsArray);

preferences:
48.13 ms | 402 KiB | 5 Q