<?php $string = "/key/value/anotherKey/anotherValue/thirdKey/thirdValue"; $arr = explode("/", trim($string, "/")); $keys = array_filter($arr, function($k){ return ($k % 2 == 0); }, ARRAY_FILTER_USE_KEY); $values = array_filter($arr, function($k){ return ($k % 2 == 1); }, ARRAY_FILTER_USE_KEY); $result = array_combine($keys, $values); print_r($result); ?>
You have javascript disabled. You will not be able to edit any code.