好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

php json如何转js

php json转js的方法:首先创建一个PHP示例文件;然后通过“eval("(" + ' ' + ")");”方式将json转js数组即可。

推荐:《PHP视频教程》

php 后台json 转 js数组

1.字符串

$this->assign('id',$id);
var health_id = '<?php echo $id;?>';

2-1数组

$this->assign('cycle', ArchivesUtil::CYCLE);
var cycle = eval("(" + '<?php echo json_encode($cycle);?>' + ")");
$this->assign('arr', json_encode($arr));
Var arr = {$arr};
var info = {$info|raw};

以上就是php json如何转js的详细内容!

查看更多关于php json如何转js的详细内容...

  阅读:53次