• <small id='YHOqx'></small><noframes id='YHOqx'>

      <legend id='YHOqx'><style id='YHOqx'><dir id='YHOqx'><q id='YHOqx'></q></dir></style></legend>
    1. <tfoot id='YHOqx'></tfoot>
        <bdo id='YHOqx'></bdo><ul id='YHOqx'></ul>

      <i id='YHOqx'><tr id='YHOqx'><dt id='YHOqx'><q id='YHOqx'><span id='YHOqx'><b id='YHOqx'><form id='YHOqx'><ins id='YHOqx'></ins><ul id='YHOqx'></ul><sub id='YHOqx'></sub></form><legend id='YHOqx'></legend><bdo id='YHOqx'><pre id='YHOqx'><center id='YHOqx'></center></pre></bdo></b><th id='YHOqx'></th></span></q></dt></tr></i><div id='YHOqx'><tfoot id='YHOqx'></tfoot><dl id='YHOqx'><fieldset id='YHOqx'></fieldset></dl></div>

        PDO 语句转 JSON

        时间:2023-09-19
        1. <legend id='K7emf'><style id='K7emf'><dir id='K7emf'><q id='K7emf'></q></dir></style></legend>
              <tbody id='K7emf'></tbody>

              <small id='K7emf'></small><noframes id='K7emf'>

              <tfoot id='K7emf'></tfoot>

            1. <i id='K7emf'><tr id='K7emf'><dt id='K7emf'><q id='K7emf'><span id='K7emf'><b id='K7emf'><form id='K7emf'><ins id='K7emf'></ins><ul id='K7emf'></ul><sub id='K7emf'></sub></form><legend id='K7emf'></legend><bdo id='K7emf'><pre id='K7emf'><center id='K7emf'></center></pre></bdo></b><th id='K7emf'></th></span></q></dt></tr></i><div id='K7emf'><tfoot id='K7emf'></tfoot><dl id='K7emf'><fieldset id='K7emf'></fieldset></dl></div>
                <bdo id='K7emf'></bdo><ul id='K7emf'></ul>
                  本文介绍了PDO 语句转 JSON的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  如何将 PDOStatement 转换为 JSON?

                  How would I convert a PDOStatement to JSON?

                  我需要对 PDO::FETCH_OBJ 进行 jsonify.

                  I need to jsonify a PDO::FETCH_OBJ.

                  json_encode 无法对 PDO::FETCH_OBJ 进行 jsonify.

                  json_encode does not have the ability to jsonify a PDO::FETCH_OBJ.

                  推荐答案

                  您可以使用内置的 php 函数 json_encode() http://php.net/manual/en/function.json-encode.php

                  You can use the inbuilt php function json_encode() http://php.net/manual/en/function.json-encode.php

                  要对结果进行编码,请使用类似

                  To encode the results use something like

                  <?php
                  $pdo = new PDO("mysql:dbname=database;host=127.0.0.1", "user", "password");
                  $statement = $pdo->prepare("SELECT * FROM table");
                  $statement->execute();
                  $results = $statement->fetchAll(PDO::FETCH_ASSOC);
                  $json = json_encode($results);
                  

                  这篇关于PDO 语句转 JSON的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:重置 PDO 中的光标位置 下一篇:PDO bindParam 成一个语句?

                  相关文章

                  最新文章

                  <i id='exs5o'><tr id='exs5o'><dt id='exs5o'><q id='exs5o'><span id='exs5o'><b id='exs5o'><form id='exs5o'><ins id='exs5o'></ins><ul id='exs5o'></ul><sub id='exs5o'></sub></form><legend id='exs5o'></legend><bdo id='exs5o'><pre id='exs5o'><center id='exs5o'></center></pre></bdo></b><th id='exs5o'></th></span></q></dt></tr></i><div id='exs5o'><tfoot id='exs5o'></tfoot><dl id='exs5o'><fieldset id='exs5o'></fieldset></dl></div>

                    <legend id='exs5o'><style id='exs5o'><dir id='exs5o'><q id='exs5o'></q></dir></style></legend>

                      <bdo id='exs5o'></bdo><ul id='exs5o'></ul>
                  1. <small id='exs5o'></small><noframes id='exs5o'>

                  2. <tfoot id='exs5o'></tfoot>