I need to delete a key in an array from a string.
String  is translations.fr
Array is
[
    ...,
    translations => [
          fr => [
              ...
          ],
          es => [
              ...
          ]
    ],
    ...,
]
Result must be :
[
    ...,
    translations => [
          es => [
              ...
          ]
    ],
    ...,
]
I think, using exlpode and unset is the good way.
Can you help me ? Thank's
 
     
     
    