json_encode()方法有内存限制吗?

时间:2016-02-29 12:07:16

标签: php mysql arrays json memory

我试图回应一个由数组组成的json编码数组,但我不知道它不会让我打印那个东西。这是我的代码:

<?php

include_once('confi.php');
header('Content-type: application/json');

if ($_SERVER['REQUEST_METHOD'] == "POST")
{
    $lastRecord = isset($_POST['lastRecordID']) ? 
                      mysql_real_escape_string($_POST['lastRecordID']) : "";

    $queryForTotalRec = mysql_query("SELECT customer_id FROM `WebServiceTesting`.`sapphire` ORDER BY customer_id DESC LIMIT 1");
    $total_rec = mysql_fetch_row($queryForTotalRec);

    if($total_rec){
        $queryForAllRecords = "SELECT * FROM `WebServiceTesting`.`sapphire` WHERE customer_ID BETWEEN %d AND %d";
       $get_all_recs = mysql_query(sprintf($queryForAllRecords, $lastRecord, $total_rec[0]));

        $json = array();
        while($row = mysql_fetch_assoc($get_all_recs)){

          $json[] = array("Status" => 1, "NewRecord" => $row);
        }

        print_r($json);
        echo json_encode($json);
   }else{
    $json = array("status" => 0, "Error_Message" => mysql_error());
          echo json_encode($json);
    }
}else{

    $json = array("status" => 0, "Error_Message" => "Request Method not correct");
      echo json_encode($json);

}
@mysql_close($conn);

错误: 格式错误的JSON:意外的“A”有时候“我”

当我删除print_r行时,我得到: 没有收到回复 当我打印$ json数组的计数时,我得到的计数为153但没有其他输出。

我尝试过的事情:

我在一些解决方案中读到了类似的问题,你需要使用array_values() 例如:

 echo json_encode(array_values($json));

同样的答复:'没有收到回复'

我也尝试将echo $ json放在循环中,我知道这在概念上是错误的,但仍然得到预期的错误'语法错误'

此外,我尝试通过foreach回应没有运气语法错误,但我可以看到原始输出但无法验证json。

仅针对print_r的信息,这是回复:

Array (
 [0] => Array ( 
     [Status] => 1 [NewRecord] => Array ( 
                   [customer_id] => 1241 
                   [firstName] => Katy 
                   [lastName] => Lest
                   [email] => klest@yahoo.com [phone] => 787012425
                                         )
               )
 [1] => Array ( 
      [Status] => 1 [NewRecord] => Array ( 
                    [customer_id] => 1242 
                    [firstName] => Hanah 
                    [lastName] => Morrisn 
                    [email] => road@gmail.com
                    [phone] => 144221275  )
              )
 [2] => Array (
       [Status] => 1 [NewRecord] => Array ( 
                    [customer_id] => 1243 
                    [firstName] => James 
                    [lastName] => McGrath
                    [email] => rosamcgrath@hotmail.com
                    [phone] => 79684312  )
             ) 
)

刚刚找到了一个答案,我仍在寻找一个理由,如果有人可以提供帮助。我拉的唱片数量是150+,所以我一次尝试了50个唱片,效果很好。任何人都知道我怎样才能真正为我的阵列分配更多内存,以便它只能一次性保存所有必需的数据?

我也试过提供准确的索引,我认为数组内存不足但这甚至不起作用:

 $json = new SplFixedArray($difference);

非常感谢您的协助。

2 个答案:

答案 0 :(得分:4)

陷入黑暗:一些数据库行包含非ASCII字符(例如ü,é等)。您的数据库连接设置为latin1,因此数据不是UTF-8编码的。 json_encode需要UTF-8编码数据。如果您获取足够的行,那么将存在包含此类非UTF-8数据的行,json_encode将失败。只有足够的行,你碰巧没有碰到那些有问题的行。

echo json_last_error_msg();之后输出json_encode来测试此内容。

将您的数据库连接设置为UTF-8。请在此处查看如何执行此操作:UTF-8 all the way through

当您包含print_r时,浏览器抱怨无效JSON的原因很简单:因为PHP会输出大量不是JSON的垃圾,浏览器无法将其解码为JSON。

答案 1 :(得分:-2)

只需使用json_decode(),您将获得所需的结果..

   $array = json_decode($json, true);
   echo "<pre>"; print_r($array);

Array
(
    [0] => Array
        (
            [Status] => 1
            [NewRecord] => Array
                (
                    [fname] => xyz
                    [lname] => abc
                    [gender] => male
                )

        )

    [1] => Array
        (
            [Status] => 1
            [NewRecord] => Array
                (
                    [fname] => 123
                    [lname] => 456
                    [gender] => male
                )

        )

    [2] => Array
        (
            [Status] => 1
            [NewRecord] => Array
                (
                    [fname] => demo
                    [lname] => vvv
                    [gender] => female
                )

        )

)