dtdr57046 2019-05-14 20:45 采纳率: 100%
浏览 119
已采纳

将json文件转换为php数组,从数组中选择随机名称

Problem is as follows:

I'm exporting a list of names and values(repCode) attached to each name from excel into a json file.

I then want to convert the json file into a php array so that I can have a piece of code that will select a random name from the php array and display the random name(and value(repCode) attached to the name).

I've tried many options so far but I keep running into problems that I'm struggling to find a solution for. One example would be:

<?php

$jsondata = file_get_contents("Names.json");
$json = json_decode($jsondata, true);
$output = '<ul>';
foreach($json['Reps']as $reps){
$output .='<h4>' .$reps['Client']."<h4>";
$output .= "<li>".$reps['Code']."</li>";

}

$output .= "</ul>";
$element = $output[mt_rand(0, count($output) - 1)];

echo $element;

?>

That doesn't work.

json File as follow: "Names.json"

{
"Reps": [

{"Client":"Jack",
    "repCode":"tt1790861"},
{"Client":"James",
    "repCode":"tt1790862"},
{"Client":"Sam",
    "repCode":"tt1790863"},
{"Client":"Hendry",
    "repCode":"tt1790864"},
{"Client":"Samone",
    "repCode":"tt1790865"},
{"Client":"Judy",
    "repCode":"tt179086"},
{"Client":"Jake",
    "repCode":"tt1790867"},
{"Client":"Amy",
    "repCode":"tt1790868"},
{"Client":"Brandon",
    "repCode":"tt1790869"},
{"Client":"Blake",
    "repCode":"tt17908610"},
{"Client":"Rick",
    "repCode":"tt17908611"},
{"Client":"Morty",
    "repCode":"tt17908612"}       
]
}

And then below is some php code:

<?php
  // JSON string
  $someJSON = "Names.json";

  // Convert JSON string to Array
  $someArray = json_decode($someJSON, true);
  print_r($someArray);        // Dump all data of the Array
  echo $someArray[0]["Client"]; // Access Array data

?>

I'm getting no result when I echo out the json file. So I can't even get to the part where I want to use the json file that's been converted into a php array so I can have code to select a random name + associated rep code and display it.

Any help would be appreciated.

  • 写回答

2条回答 默认 最新

  • ds3422222 2019-05-14 20:55
    关注

    In your first example you're trying to use $output as an array, it's not. Also, you're not accessing the keys of $element:

    $element = $json['Reps'][mt_rand(0, count($json['Reps']) - 1)];
    //or
    $element = $json['Reps'][array_rand($json['Reps'])];
    echo $element['Client'];
    echo $element['repCode'];
    

    For your second example, you're not actually loading the JSON file and then you forget the Reps key:

    $someJSON = file_get_contents("Names.json");
    $someArray = json_decode($someJSON, true);
    print_r($someArray);
    echo $someArray["Reps"][0]["Client"];
    //or random
    echo $someArray["Reps"][array_rand($someArray["Reps"])]["Client"];
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog