I may not be clear enough in the title but here is my problem.
I have a string like this
$chain = "id:20604#*#user_id:32444#*#session_id:0#*#version:142#*#modified:1438610605#*#name:recrutement#*#push:0#*#last_push_execution:0#*#allowempty:1";
I do an explode("#*#", $chain);
and now i have this:
array:9 [
0 => "id:20604"
1 => "user_id:32444"
2 => "session_id:0"
3 => "version:142"
4 => "modified:1438610605"
5 => "name:recrutement"
6 => "push:0"
7 => "last_push_execution:0"
8
]
But i wanna something like this
array:9 [
"id" => "20604"
"user_id" => "32444"
"session_id" => "0"
"version" => "142"
"modified" => "1438610605"
"name" => "recrutement"
"push"=> "0"
"last_push_execution"=> "0"
]
Can anyone show me how to do it ?
thanks
1) Simple solution using
explode
function:2) Alternative solution using
preg_match_all
andarray_combine
functions:Both approaches will give the needed result