duana1021 2014-08-27 10:34
浏览 53
已采纳

如何将json数组变量数据复制到php变量?

This is a web page for student results and 3 fields data i.e stu_class, section, exam is sending to controller and a json array data variable is coming back from controller to this page now i wanted to show that json variable's data on the webpage. So help me how to do so?

$(document).ready(function(){

$('#examination').change(function(){

  var exam = $('#examination').val();
  $('#exam').val(exam);
  });

$('#enter').click(function(){
 var stu_class = $('#stu_class').val();
 var section = $('#section').val();
 var exam = $('#examination').val();

  $.ajax(
     {
       type : "POST",
       dataType: "json",
       url : "<?php echo base_url('index.php/marksheet/student_result_database'); ?>",

       data : {
              stu_class : stu_class,
              section : section,
              exam : exam
          },
       success: function(stu_data)
        {
          var items = [];
          $.each( stu_data, function( key, val ) {   
               items.push( "<li id='" + key + "'>" + val['student'] + "</li>" );
             });

             alert(items);

          }
       });
      });

});

And i need to copy the data of stu_data variable of jquery to php variable $stu_data so that i can run a loop to show the values in below fields like this-

<?php foreach($stu_data as $data): 
echo $data['id']; 
echo $data['student'];

Something like this. So programmers please help me..!

  • 写回答

1条回答 默认 最新

  • dongmi4927 2014-08-27 10:48
    关注

    json_decode($str, true) -> turns a json-object into a php assoc array.

    json_decode($str, false) -> turns a json-object into a php object.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测