douhuan1380 2019-04-12 17:16
浏览 78
已采纳

如何将include绑定到php [duplicate]中的关联数组

This question already has an answer here:

I have 2 echo's from a php script that are sent as json to the ajax call. These 2 echos will be outputted in 2 different divs. For those 2 echo's , I created an array like below:

 $result = [
    "one" => "this is echo 1",
    "two" => "this is echo 2"
];
echo json_encode($result);

Instead of these echo's, I now want to include 2 files (which will be the echos). Sow can I do that?

So what I want is something like this:

$result = [
    "one" => include('success.php'),
    "two" => include('renderfiles.php')
];

How can I do this?

By the way, this is my jquery ajax:

$.ajax({
url: "",
type: "post",
data:  new FormData(this),
dataType: 'json',
contentType: 'application/json',
    success: function(data) {
       $('.echo').html(data.one); // content ofinclude success.php should come here
   $('.table-content').html(data.two); // content of include renderfiles.php should come here
</div>
  • 写回答

2条回答 默认 最新

  • doulingna9420 2019-04-12 17:26
    关注

    In your include files, you will need to return the HTML - or use output buffering to capture it and then return the contents. Using return ...

    $result = [
        "one" => include('success.php'),
        "two" => include('renderfiles.php')
    ];
    

    So the contents of success.php would be something like

    return "<sometag></sometag>";
    

    This makes sure that the value is passed back and inserted in the correct place and will give something like

    {"one":"<sometag><\/sometag>","two":...}
    

    If you just echo the HTML,

    echo "<sometag></sometag>";
    

    you may end up with something like

    <sometag></sometag>{"one":1,"two":"a"}
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥30 python代码,帮调试,帮帮忙吧