我想清理我的 old_array 并将其拆分为对象数组。所以 new_array 包含字符串和整数。
这是我的名为 $test_temp_variable 的 old_array,它仅在字符串中。
discount_org: [
[
"{"day":"00:00"",
""time":"08:00"",
""discount":"10:00""
],
[
""day":"00:00"",
""time":"14:00"",
""discount":"10:00""
]
这是我想要的输出
discount_org: [
{
day: 0,
time: 8,
discount: 10
},
{
day: 0,
time: 14,
discount: 10
}
但这在 PHP 中是否可行?我已经尝试了几个面向对象的功能,但总是无法正常工作。如果是的话,你能指点一下吗?
我的旧数组的 var 转储
array(7) {
[0]=>
array(3) {
[0]=>
string(13) "{"day":"8:00""
[1]=>
string(14) ""time":"12:00""
[2]=>
string(15) ""discount":"10""
}
[1]=>
array(3) {
[0]=>
string(12) ""day":"8:00""
[1]=>
string(14) ""time":"12:00""
[2]=>
string(15) ""discount":"10""
}