我有一些数据存储在MySQL表中,我用PDO解决了这个问题。该函数将查询结果放入一个数组中,并且所有字段都存在:
Array (
[0] => Array ( [id] => 1 [nome] => Oggetto 1 [descr] => Questa è la favolosa descrizione dell'oggetto 1 [prezzo] => 50.00 [imgpath] => dummy.jpg [url] => http://localhost/ [cat] => 1 [avail] => 1 )
[1] => Array ( [id] => 2 [nome] => Oggetto 2 [descr] => Questa è la favolosa descrizione dell'oggetto 2 [prezzo] => 45.00 [imgpath] => dummy.jpg [url] => http://localhost/ [cat] => 1 [avail] => 1 )
[2] => Array ( [id] => 3 [nome] => Oggetto 3 [descr] => Questa è la meravigliosa descrizione dell'oggetto 3 [prezzo] => 120.00 [imgpath] => dummy.jpg [url] => http://localhost/ [cat] => 3 [avail] => 1 )
[3] => Array ( [id] => 4 [nome] => Oggetto 4 [descr] => Questa è la meravigliosa descrizione dell'oggetto 4 [prezzo] => 200.00 [imgpath] => dummy.jpg [url] => http://localhost [cat] => 2 [avail] => 1 )
[4] => Array ( [id] => 5 [nome] => Oggetto 5 [descr] => Questa è la fantasiosa descrizione dell'oggetto 5 [prezzo] => [imgpath] => dummy.jpg [url] => http://locahost [cat] => 4 [avail] => 1 ) )
问题是我需要一个json格式的数据响应,因此我使用json_encode
函数将PHP数组转换为JSON格式的数据,但正如您从以下输出中可以看到的,字段descr
具有失踪了,我无法弄清楚原因:
[
{"id":"1","nome":"Oggetto 1","descr":null,"prezzo":"50.00","imgpath":"dummy.jpg","url":"http:\/\/localhost\/","cat":"1","avail":"1"},
{"id":"2","nome":"Oggetto 2","descr":null,"prezzo":"45.00","imgpath":"dummy.jpg","url":"http:\/\/localhost\/","cat":"1","avail":"1"},
{"id":"3","nome":"Oggetto 3","descr":null,"prezzo":"120.00","imgpath":"dummy.jpg","url":"http:\/\/localhost\/","cat":"3","avail":"1"},
{"id":"4","nome":"Oggetto 4","descr":null,"prezzo":"200.00","imgpath":"dummy.jpg","url":"http:\/\/localhost","cat":"2","avail":"1"},
{"id":"5","nome":"Oggetto 5","descr":null,"prezzo":null,"imgpath":"dummy.jpg","url":"http:\/\/locahost","cat":"4","avail":"1"}
]
这可能是因为我已将desc
声明为表格中的文本字段吗?如果是这样,我如何确保从PHP数组传递到JSON格式的数据时该字段中的数据不会丢失?
答案 0 :(得分:1)
因为[descr]字符串包含扩展字符,所以您可能需要使用PHP' htmlentities 函数对其进行编码。
答案 1 :(得分:0)
检查descr
字段值,字符è
不是JSON中的可执行字符,因此在获取数组结果之前请使用htmlentities($_POST[descr])
。
<强>实施例强>
<?php
$a = htmlentities("Questa è la favolosa descrizione dell'oggetto 1");
$arr = array('a' => $a);
echo json_encode($arr);
?>
结果是,
{"a":"Questa è la favolosa descrizione dell'oggetto 1"}
注意:强> 您可以使用UTF8使用MYSQL本身对这些字符进行编码