对于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);


提前致谢!

最佳答案

如果您只是数组结构有问题,那么您就变得有点复杂了。您可以构建一个像这样的数组:

$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);

关于php - 日历的whileSQL的while循环中的json_encode()数组,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11236423/

10-12 20:37