phpでJSON形式のデータを吐き出すプログラムをつくりました。
これをObjective-Cから取得しようと思っているのですが、うまくいきません。
URLの部分を、東京電力電力供給状況API(http://tepco-usage-api.appspot.com/latest.json)に変更すると、正常に取得できているようですが、自作のJSONデータではnullが返ってきます。
 ウェブ方面にお詳しい方、ご教授願います。

NSString *urlString = @"http://kokun.sakura.ne.jp/tutor/JSONTest.php";
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:urlString]];
NSData *json = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSArray *array = [NSJSONSerialization JSONObjectWithData:json options:NSJSONReadingAllowFragments error:nil];
NSLog(@"%@",array);

【追記】
以下はJSON形式のデータを吐き出すphpプログラムの全文です。

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>JSONTest</title>
</head>
<body>
<?php
$array = array(
    "name" => "shou",
    "date" => "2015-06-14 19:53:00",
    "content" => "hello world",
);
$json = json_encode($array);
echo $json;
?>

</body>
</html>