我正在将一些数据传递到php页面。我有一个字符串数据类型,我需要将其转换为数组。我有以下代码:
$args = json_decode($form_update_args,true);
$ form_update_args的值是这个$form_update_args = ["update","provider","jghjghjhhh",["folder_76248"]]
因此,我需要将该字符串转换为数组,以便可以像这样使用它:
$field_to_update = $args[1];
$myvalue = $args[2];
$selection = $args[3];
但是,如果现在在json_decode之后打印$ args,它只是空的,那里没有值。打印$ form_update_args将带回上面的文本。
我在这里想念什么?
编辑:这与发布的示例不同,因为他的字符串看起来完全不同。