drpzr64329 2018-12-11 04:24
浏览 51
已采纳

返回字符串中的foreach值

I have the code below. I am trying to loop through an array within a string and return the results to be a sub part of the string.

    $household = '{
                "data": {
                    "attributes": {
                        "name":"'.rgar( $entry, '1.6' ).'"
                    },
                    "relationships": {
                        "people":{
                            "data":[
                                '.
                                foreach ($family_ids[] as $fam_member){
                                    return '{"type":"Person","id":"'.$fam_member.'"}';
                                }.'
                            ]
                        },
                        "primary_contact":{
                            "data":{"type":"Person","id":"1"}
                        }
                    }
                }
            }';

            echo($household);

My expected results would be along the lines of this

        '{
                "data": {
                    "attributes": {
                        "name":"'.rgar( $entry, '1.6' ).'"
                    },
                    "relationships": {
                        "people":{
                            "data":[
                                {"type":"Person","id":"2"},
                                {"type":"Person","id":"3"},
                                {"type":"Person","id":"4"}, //note the commas
                                {"type":"Person","id":"5"}
                            ]
                        },
                        "primary_contact":{
                            "data":{"type":"Person","id":"1"}
                        }
                    }
                }
            }';

I believe my issue is related to my quotation marks to break in and out of the string. However I am also not sure how to address to comma being removed for the last result.

  • 写回答

3条回答 默认 最新

  • douzhang5121 2018-12-11 04:29
    关注

    You need to assign foreach value to a variable first and then assign this variable to your json.

    $data = [];
    
    foreach ($family_ids as $fam_member){
        $data[]= ["type"=>"Person","id"=> $fam_member]
    }
    
    
    $household = '{
                    "data": {
                        "attributes": {
                            "name":"'.rgar( $entry, '1.6' ).'"
                        },
                        "relationships": {
                            "people":{
                                "data":'. json_encode($data) . '
                            },
                            "primary_contact":{
                                "data":{"type":"Person","id":"1"}
                            }
                        }
                    }
                }';
    
    echo($household);
    

    A hardcoded sample example Output:- https://3v4l.org/enrGP

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 关于大棚监测的pcb板设计
  • ¥20 sim800c模块 at指令及平台
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计