我刚刚开始学习更高级的 SQL 和 PHP,并且我真的很努力地尝试找出如何查询我的数据库以进行我正在构建的测验。
最终,我尝试返回一个具有以下结构的 json 对象,它以多维数组的形式提供了问题列表和所有可能的答案:
{
"questions":
[
{
"question": "question text here",
"answers":
[
{ "answer": "answer text here", "points": 10 },
{ "answer": "answer text here", "points": 20 },
{ "answer": "answer text here", "points": 30 },
{ "answer": "answer text here", "points": 40 }
]
},
{
"question": "question text here",
"answers":
[
{ "answer": "answer text here", "points": 10 },
{ "answer": "answer text here", "points": 20 },
{ "answer": "answer text here", "points": 30 },
{ "answer": "answer text here", "points": 40 }
]
}
]
{
...来自我的以下结构的 mySQL 表:
测验
id | title
1 | quiz title here
测验问题
id | quiz_id (FK) | question_text
1 | 1 | question text here
2 | 1 | question text here
测验_答案
id | quiz_question_id (FK) | answer_text | points
1 | 1 | answer text here | 10
2 | 1 | answer text here | 20
3 | 1 | answer text here | 30
4 | 1 | answer text here | 40
...具有以下外键:
quiz_question.quiz_id is FK to quiz.id
quiz_answer.quiz_question_id is FK to quiz_question.quiz_id
...使用以下 PHP(以最简单的形式,目前仅返回我的问题):
//query the db
$query = mysql_query("
SELECT quiz_question.question_text
FROM quiz_question
JOIN quiz ON quiz.id = quiz_question.quiz_id
WHERE quiz.id = 1;
");
$numrows = mysql_num_rows($query);
for ($i = 0; $i < $numrows; $i++) {
$row = mysql_fetch_assoc($query);
$quiz_data[$i] = array("question" => $row["question_text"]);
}
//echo JSON to page
$response = $_GET["jsoncallback"] . "(" . json_encode($quiz_data) . ")";
echo $response;
...并在我的 JavaScript 中使用 jQuery 的 $.getJSON() 从 PHP 获取 JSON 格式的对象,这让我返回以下内容:
[
{"question":"question text here"},
{"question":"question text here"}
]
所以我的问题是,如何编写 SQL 和 PHP 来创建像上面这样的多维数组,而不是像我现在返回的单个数组?我需要弄清楚如何将问题和所有相关答案包含为多维数组。
你不能纯粹用mysql检索多维数组(至少据我所知)。 您将必须进行一些 php 处理。 这听起来不太疯狂。
首先,使用问题 ID 将
quiz_answers
加入 quiz_questions
来更新您的查询以同时选择答案。 然后,在你的循环中:
$quiz = array();
while ($row = mysql_fetch_assoc($result)) {
// you don't need to check num_rows
// fetch_assoc returns false after the last row, so you can do this
// which is cleaner
if (!isset($quiz[$row['question_id'])) {
$quiz[$row['question_id']] = array(
'question' => $row['question_text']
, 'answers' => array()
);
}
$quiz[$row['question_id']]['answers'][] = $row['answer_text'];
}
$full = json_encode(array('questions' => $quiz'));
这将在 json 编码后为您提供所需的数组。
请注意,您最终将为每个答案选择一次问题文本/ID,这是低效的。 您可以在答案上使用
GROUP_CONCAT
,但上面的方法仍然几乎相同,您只需拆分答案字符串即可。
我还建议您在
PDO
上使用 mysql_*
或其他包装纸。
据我所知,从数据库中提取结果后,您需要构建多维数组。
您可能可以对问题和答案进行连接,因此生成的数组将如下所示:
$results = array(
array( 'question' => 'question 1', 'answer' => 'answer 1', 'points' => 10 ),
array( 'question' => 'question 1', 'answer' => 'answer 2', 'points' => 30 ),
array( 'question' => 'question 2', 'answer' => 'answer 1', 'points' => 20 ),
array( 'question' => 'question 2', 'answer' => 'answer 2', 'points' => 50 )
);
然后,您可以通过将问题和答案分组在一起来构建 json 数组。
基本上,php 和标准 mysql_query 函数不会构建多维数组,因此您必须自己提取数据并构建它。
您只需运行查询,然后基于它创建一个复合数据结构(
$questions
);示例:
$questions= array();
$rowsQuestions = $gateway->findQuestions($quiz);
foreach($rowsQuestions as $row)
{
$questions[$row->id] = new stdClass;
$questions[$row->id]->question = $row->question_text;
}
$rowsAnswers = $gateway->findAnswers($quiz);
foreach($rowsAnswers as $row)
{
$answer = (object) array(
'answer' => $row->answer_text,
...
);
$questions[$row->quiz_question_id]->answers[] = $answer;
}
前面的答案都比我要建议的性能更高,但本文为“连接”结果提供了一种灵活的解决方案,特别是当嵌套连接相互构建时。
通过
json_encode()
运行结果,将其转换为JSON对象。