我想做一些像json文件这样的东西。 这是我想模仿的JSON文件,但是使用PHP和MYSQL
{
"success": 1,
"result": [
{
"id": "293",
"title": "This is warning class event",
"url": "http://www.example.com/",
"class": "event-warning",
"start": "1362938400000",
"end": "1363197686300"
},
{
"id": "294",
"title": "This is information class ",
"url": "http://www.example.com/",
"class": "event-info",
"start": "1363111200000",
"end": "1363284086400"
},
{
"id": "297",
"title": "This is success event",
"url": "http://www.example.com/",
"class": "event-success",
"start": "1363284000000",
"end": "1363284086400"
}
然后我继续做一会儿
$link=mysql_connect("localhost", "user", "pass");
mysql_select_db("db",$link) OR DIE ("Error: No es posible establecer la conexión");
mysql_set_charset('utf8');
$eventos= mysql_query("SELECT * from eventos",$link);
echo ("{'success': 1, 'result': [");
while($matrizu=mysql_fetch_array($eventos))
{
$evento=$matrizu["id"];
$nombre=$matrizu["name"];
$clase=$matrizu["categoria"];
$inicio=$matrizu["datetime"];
$final=$matrizu["end"];
echo ('"{"
"id": ".$evento.",
"title": ".$nombre.",
"url": "http://www.example.com",
"class": ".$clase.",
"start": ".$inicio.",
"end": ".$final."
"}",');
}
echo("
]
}");
但我无法逃避角色,因为它看起来像是JSON文件。 这是针对此Bootstrap calendar的。
该日历的作者说,我必须做这样的事情:
<?php
$db = new PDO('mysql:host=localhost;dbname=testdb;charset=utf8', 'username', 'password');
$start = $_REQUEST['from'] / 1000;
$end = $_REQUEST['to'] / 1000;
$sql = sprintf('SELECT * FROM events WHERE `datetime` BETWEEN %s and %s',
$db->quote(date('Y-m-d', $start)), $db->quote(date('Y-m-d', $end)))
$out = array()
foreach($db->query($sql) as $row) {
$out[] = array(
'id' => $row->id,
'title' => $row->name,
'url' => Helper::url($row->id),
'start' => strtotime($row->datetime) . '000'
);
}
echo json_encode($out);
exit;
并且无法正常工作
答案 0 :(得分:0)
你要展示的第二个选项是要走的路,当有一个内置的PHP函数来生成它时,尝试手动创建正确格式化/转义的JSON绝对没有意义。在结构上,您需要使用success
和result
键启动数组,然后将数据库结果推送到result
键:
$out = array(
'success' => 1,
'result' => array()
);
现在,您可以轻松获取值并将其推送到result
键:
foreach($db->query($sql) as $row) {
$out['result'][] = array(
'id' => $row['id'],
'title' => $row['name'],
'url' => Helper::url($row['id']), // up to you whether this is correct here...
'class' => $row['categoria']
'start' => $row['datetime'],
'end' => $row['end']
);
}
这只是采取原始尝试并将变量插入第二个示例 - here's the PDO query manual FYI。作为旁注,您的表中不应该有一个名为datetime
的字段 - 虽然它不是保留字,但它也不是一种好的做法,因为它是一种列类型。
现在你去:
echo json_encode($out);
......你应该拥有你想要的JSON。