<?php $string = 'key1\value1\key2\value2\key3\value3\key4\value4\key5\value5'; $result = []; foreach ( array_chunk(explode('\\', $string), 2) as [$key, $result[$key]] ); var_export($result);
You have javascript disabled. You will not be able to edit any code.