Код: Выделить всё
$str = "ProductId=123, Name=Ancient Roots, Modern Pursuits, Country=India, City=Bangalore, Price=3368"
Код: Выделить всё
[
"ProductId" => "123",
"Name" => "Ancient Roots, Modern Pursuits",
"Country" => "India",
"City" => "Bangalore",
"Price" => "3368"
]
Код: Выделить всё
$arr = explode(",", $str);
Код: Выделить всё
$prodarr = explode("=", $arr[0]);
$product["ProductId"] = $prodarr[1]
Подробнее здесь: https://stackoverflow.com/questions/505 ... tive-array
Мобильная версия