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 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探