我需要從字符串中刪除數組中的某個鍵。如何從字符串中刪除數組元素
字符串是translations.fr
陣列是
[
...,
translations => [
fr => [
...
],
es => [
...
]
],
...,
]
結果必然是:
[
...,
translations => [
es => [
...
]
],
...,
]
我認爲,使用exlpode
和unset
是很好的方式。
你能幫我嗎?感謝的
使用PHP未設置()方法爲 –
'未設置($ translation_arr [ 'FR']);'會工作。 –
試試這個,https://stackoverflow.com/questions/369602/delete-an-element-from-an-array – dadan