<?php $str = 'php/127/typescript/12/jquery/120/angular/50'; $list = explode('/', $str); $list_count = count($list); $result = array(); for ($i=0 ; $i<$list_count; $i+=2) { $result[ $list[$i] ] = $list[$i+1]; } print_r($result); ?>
You have javascript disabled. You will not be able to edit any code.