如何从PHP数组格式化JSON

时间:2014-05-17 10:34:35

标签: php android arrays json

这是我的PHP代码:

<?php
$i = 0;
$output = array();
$kurse = array();
$zusatz = array();
while (isset($_POST['kurs'.$i]))
{
    $kurse[$i] = $_POST['kurs'.$i];

    $i++;
}
$anzahl = count($kurse);


/* Bestimmt den aktuellen Tag*/
$timestamp = time();
$dw = date( "w", $timestamp);
$day = array('So', 'Mo', 'Di', 'Mi', 'Do', 'Fr', 'Sa', 'So');
$rday= array('Mo', 'Di', 'Mi', 'Do');
$tag1 = $day[$dw];
$tag2 = $day[($dw+1) % 7];


/* read html */
$homepage = "";
if ($dw >= 1 && $dw <= 5) $homepage .= file_get_contents('xyz'.$tag1.'.html');
if (in_array($tag1, $rday) ) $homepage .= file_get_contents('xyz'.$tag2.'.html');

for( $i = 0; $i < $anzahl; $i++){ 
    if ( strpos( $homepage, $kurse[$i] ) !== false )
    {
        $output[] = $kurse[$i];
    }
}


if(empty($output)) {
    $response = array();
    $response["success"] = 0;
    $response["message"] = "Keinen Kurs gefunden";

    // echo no users JSON
    echo json_encode($response);
}
else {
    $response = array();

    // success
    $response["success"] = 1;

    // user node
    $response["get"] = $output;

    echo json_encode($response);
}
exit();

?>

我的JSON输出如下所示:

{"success":1,"get":["9b,"6m"]}

但它应该是这样的:

{"success":1,
             "get":[{
             "kurs":"9b"
    }
        },
        {
             "kurs":"6m" 
         }
        }]
        }

我可以做什么来格式化,因为我想在我的Android应用程序中使用它。 我认为解决方案非常简单,但我没有得到它,也许你可以帮助我......

提前谢谢你:)

1 个答案:

答案 0 :(得分:0)

$output[]["kurs"] = $kurse[$i];

可能?