gpt4 book ai didi

javascript - 用非关联数组包装关联数组,以便 JavaScript 获得正确的格式

转载 作者:行者123 更新时间:2023-11-30 17:14:46 26 4
gpt4 key购买 nike

我目前正在使用 drupal 和 Flowplayer API。

在 Javascript 中,一切对我来说都非常简单,但在 PHP 方面,我的菜鸟知识还不够。

要使 flowplayer 插件正常工作,我需要的是像这样的 javascript 结构:

                             "ads" : {
"schedule" : [ {
"position" : "pre-roll",
"server" : {
"type" : "direct",
"timeoutInSeconds" : 5,
"tag" : "http%3Asomething",
}
} ]
}

但是用我的 php API

            'ads'=> array(
'scheudle'=>array(
'position'=>'pre-roll',
'server'=> array(
'type'=>'direct',
"timeoutInSeconds"=>5,
"tag"=>"httpsomething",
)

)
)

我得到这样的 JavaScript:

 "ads":{
"scheudle":{ /*HERE NEEDS TO BE A WRAPPING [] ARRAY LIKE ABOVE */
"position":"pre-roll",
"server":{
"type":"direct",
"timeoutInSeconds":5,
"tag":"http%3something"
}
}
},

如何使我的 PHP 输出正确的 js 结构?

最佳答案

使用这个:

'ads'=> array(
'scheudle'=>array(array(
'position'=>'pre-roll',
'server'=> array(
'type'=>'direct',
"timeoutInSeconds"=>5,
"tag"=>"httpsomething",
)

))
)

关于javascript - 用非关联数组包装关联数组,以便 JavaScript 获得正确的格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26330749/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com