1

当涉及到 JSON 时,我不知道我在做什么。所以这可能是一个愚蠢的问题,我可能试图以一种奇怪的方式来做。任何帮助都会很棒。

我有这个想要放在我的网站上的 Jquery 日历。它允许 json_encode 日期。这是他们给出的例子。

    $year = date('Y');
$month = date('m');

echo json_encode(array(

    array(
        'id' => 111,
        'title' => "Event1",
        'start' => "$year-$month-10",
        'url' => "http://yahoo.com/"
    ),

    array(
        'id' => 222,
        'title' => "Event2",
        'start' => "$year-$month-20",
        'end' => "$year-$month-22",
        'url' => "http://yahoo.com/"
    )

));

我想使用现有的 mySQL 数据库来填充日历。这是我到目前为止所拥有的。它不起作用,我认为我对此并不聪明。

$dataSQL ="select *
            FROM events
        ";

$dataResult = mysqli_query($dataBase, $dataSQL);

$encode = array();

$p=0;
    while($allRow = mysqli_fetch_array($dataResult))
        {
            $new = array(
                        'id' => "$allRow['id']",
                        'title' => "$allRow['title']",
                        'start' => "$allRow['date']",
                        'url' => "$allRow['url']"
                    );
            array_splice($encode, ($p), 0, $new);

            $p++;
        }


echo json_encode($encode);

提前致谢!

4

1 回答 1

0

如果您只是在数组结构方面遇到问题,那么您就有点复杂了。您可以像这样构建一个数组:

$encode = array();

while($allRow = mysqli_fetch_array($dataResult))
       {
            $new = array(
                        'id' => $allRow['id'],
                        'title' => $allRow['title'],
                        'start' => $allRow['date'],
                        'url' => $allRow['url']
                    );
            $encode[] = $new;

        }

echo json_encode($encode);
于 2012-06-28T00:19:45.363 回答