如何在json数组中回显表和数据?

时间:2017-04-18 03:52:06

标签: php json

如何在json数组中回显表和数据? 我这里有问题 enter image description here

tuple

我无法在代码中编写表格html。

感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

您可以通过两种方式完成:

<强>首先

  1. base64编码用于HTML字符串
  2. json encode

    double PreEnCol() {
        if (marca == 1)
            return (105.000*562);
        else if (marca == 2)
            return (65.000*562);
        else if (marca == 3) 
            return (54.000*562);
        else if (marca == 4) 
            return (125.000*562);
        else if (marca == 5)
            return (129.000*562);
        else if (marca == 6)
            return (85.900*562);
    }
    
    string toString(){
        stringstream s;
        s << endl;
        s << std::fixed << std::setprecision(1) << "Precio en colones: "<<PreEnCol() << endl;
        return s.str();
    }
    
  3. 回归时

    1. json decode
    2. base64 decode

      $ decoding_html = base64_decode(json_decode($ encoded_html));

    3. <强>第二

      只需键和值对即可。

      $html = "Random HTML String"; //Use addslashes if problem creating string
      $encoded_html = json_encode(base64_encode($html));