web-dev-qa-db-ja.com

からJSONを返す PHP スクリプト

私はPHPスクリプトからJSONを返したいです。

結果をそのままエコーしますか。 Content-Typeヘッダーを設定する必要がありますか?

749
Scott Nicol

通常はそれなしでも大丈夫ですが、Content-Typeヘッダーを設定することもできますし、設定する必要があります。

<?PHP
$data = /** whatever you're serializing **/;
header('Content-Type: application/json');
echo json_encode($data);

私が特定のフレームワークを使用していない場合は、通常、いくつかのリクエストパラメータに出力動作の変更を許可します。一般的には迅速なトラブルシューティングのために、ヘッダを送信しない、または時々print_rデータペイロードを目にするために使用すると便利です(ただしほとんどの場合は必要ありません)。

1354
timdev

JSONを返すNice and clear PHPコードの一部は、次のとおりです。

$option = $_GET['option'];

if ( $option == 1 ) {
    $data = [ 'a', 'b', 'c' ];
    // will encode to JSON array: ["a","b","c"]
    // accessed as example in JavaScript like: result[1] (returns "b")
} else {
    $data = [ 'name' => 'God', 'age' => -1 ];
    // will encode to JSON object: {"name":"God","age":-1}  
    // accessed as example in JavaScript like: result.name or result['name'] (returns "God")
}

header('Content-type: application/json');
echo json_encode( $data );
104
aesede

json_encode を試してデータをエンコードし、content-typeをheader('Content-type: application/json');で設定してください。

37
thejh

manual json_encode によると、メソッドは非文字列を返すことができます(false):

成功するとJSONエンコードされた文字列を返し、失敗するとFALSEを返します。

これが発生すると、echo json_encode($data)は空の文字列を出力します。空の文字列は 無効なJSON です。

json_encodeは、引数にUTF-8以外の文字列が含まれている場合、たとえば失敗します(そしてfalseを返します)。

このエラー状態は、次のようにPHPでキャプチャする必要があります。

<?php
header("Content-Type: application/json");

// Collect what you need in the $data variable.

$json = json_encode($data);
if ($json === false) {
    // Avoid echo of empty string (which is invalid JSON), and
    // JSONify the error message instead:
    $json = json_encode(array("jsonError", json_last_error_msg()));
    if ($json === false) {
        // This should not happen, but we go all the way now:
        $json = '{"jsonError": "unknown"}';
    }
    // Set HTTP response status code to: 500 - Internal Server Error
    http_response_code(500);
}
echo $json;
?>

次に、受信側は、jsonErrorプロパティの存在がエラー条件を示していることを認識している必要があり、それに応じて処理する必要があります。

実稼働モードでは、一般的なエラーステータスのみをクライアントに送信し、後で調査するために、より具体的なエラーメッセージを記録する方が良い場合があります。

JSONエラーの処理の詳細については、 PHPのドキュメント をご覧ください。

37
trincot

header('Content-type: application/json');でコンテンツタイプを設定してからデータをエコーし​​てください。

15
Brad Mace

アクセスセキュリティを設定するのも良いでしょう - 単に*をあなたがそれに到達できるようにしたいドメインに置き換えます。

<?php
header('Access-Control-Allow-Origin: *');
header('Content-type: application/json');
    $response = array();
    $response[0] = array(
        'id' => '1',
        'value1'=> 'value1',
        'value2'=> 'value2'
    );

echo json_encode($response); 
?>

これに関するより多くのサンプルはここにあります: Access-Control-Allow-Originを迂回する方法?

11

上記のように:

header('Content-Type: application/json');

仕事をします。ただし、以下の点に注意してください。

  • このヘッダーが使用されていなくても、jsonにHTMLタグが含まれている場合を除き、Ajaxはjsonを読んでも問題ありません。この場合、ヘッダをapplication/jsonに設定する必要があります。

  • ファイルがUTF8-BOMでエンコードされていないことを確認してください。このフォーマットはファイルの先頭に文字を追加するので、あなたのheader()呼び出しは失敗するでしょう。

3
Tom Ah

あなたの質問に対する答えは ここにあります

それは言います。

JSONテキストのMIMEメディアタイプはapplication/jsonです。

そのため、ヘッダをそのタイプに設定してJSON文字列を出力すれば、うまくいくはずです。

3
Codemwnci
<?php
$data = /** whatever you're serializing **/;
header("Content-type: application/json; charset=utf-8");
echo json_encode($data);
?>
2
Joyal

あなたが他のものを印刷するためにあなたが前にこのheader('Content-Type: application/json');を加えることができるカスタム情報を送るphpからjsonを取得する必要があるならば、あなたはあなたがecho '{"monto": "'.$monto[0]->valor.'","moneda":"'.$moneda[0]->nombre.'","simbolo":"'.$moneda[0]->simbolo.'"}';を印刷することができます

1
jacr1614

これは単純なPHPスクリプトで、男性の女性とユーザーIDをjson値として返します。スクリプトjson.phpを呼び出すと、これはランダムな値になります。

この助けを願っています感謝

<?php
header("Content-type: application/json");
$myObj=new \stdClass();
$myObj->user_id = Rand(0, 10);
$myObj->male = Rand(0, 5);
$myObj->female = Rand(0, 5);
$myJSON = json_encode($myObj);
echo $myJSON;
?>
1

ええ、あなたは出力を表示するためにechoを使う必要があるでしょう。 MIMEタイプ:application/json

1
Nev Stokes

ドメインオブジェクトをJSONにフォーマットする簡単な方法は Marshal Serializer を使用することです。次に、データをjson_encodeに渡して、必要に応じて正しいContent-Typeヘッダーを送信します。 Symfonyのようなフレームワークを使っているのであれば、手動でヘッダーを設定する必要はありません。そこでは JsonResponse を使うことができます。

たとえば、Javascriptを扱うための正しいContent-Typeはapplication/javascriptになります。

あるいは、かなり古いブラウザをサポートする必要がある場合、最も安全なのはtext/javascriptです。

モバイルアプリのような他のすべての目的のためには、Content-Typeとしてapplication/jsonを使用してください。

これは小さな例です。

<?php
...
$userCollection = [$user1, $user2, $user3];

$data = Marshal::serializeCollectionCallable(function (User $user) {
    return [
        'username' => $user->getUsername(),
        'email'    => $user->getEmail(),
        'birthday' => $user->getBirthday()->format('Y-m-d'),
        'followers => count($user->getFollowers()),
    ];
}, $userCollection);

header('Content-Type: application/json');
echo json_encode($data);
0
Kingson

little PHP library を使うことができます。それはヘッダを送信し、それを簡単に使用するためのオブジェクトを提供します。

それはように見えます:

<?php
// Include the json class
include('includes/json.php');

// Then create the PHP-Json Object to suits your needs

// Set a variable ; var name = {}
$Json = new json('var', 'name'); 
// Fire a callback ; callback({});
$Json = new json('callback', 'name'); 
// Just send a raw JSON ; {}
$Json = new json();

// Build data
$object = new stdClass();
$object->test = 'OK';
$arraytest = array('1','2','3');
$jsonOnly = '{"Hello" : "darling"}';

// Add some content
$Json->add('width', '565px');
$Json->add('You are logged IN');
$Json->add('An_Object', $object);
$Json->add("An_Array",$arraytest);
$Json->add("A_Json",$jsonOnly);

// Finally, send the JSON.

$Json->send();
?>
0
Alexis Paques

データベースをクエリしてJSON形式の結果セットが必要な場合は、次のようにします。

<?php

$db = mysqli_connect("localhost","root","","mylogs");
//MSG
$query = "SELECT * FROM logs LIMIT 20";
$result = mysqli_query($db, $query);
//Add all records to an array
$rows = array();
while($row = $result->fetch_array()){
    $rows[] = $row;
}
//Return result to jTable
$qryResult = array();
$qryResult['logs'] = $rows;
echo json_encode($qryResult);

mysqli_close($db);

?>

JQueryを使用して結果を解析するための助けとして、 このチュートリアル をご覧ください。

0
Eyece

HTTPステータスコード とともに JSON応答 を返す単純な関数です。

function json_response($data=null, $httpStatus=200)
{
    header_remove();

    header("Content-Type: application/json");

    header('Status: ' . $httpStatus);

    http_response_code($httpStatus);

    echo json_encode($data);
}
0
Dan

APIのJSON応答を返そうとするとき、または適切なヘッダーがあることを確認し、有効なJSONデータを返すことを確認してください。

ここに、PHP配列またはJSONファイルからJSON応答を返すのに役立つサンプルスクリプトがあります。

PHPスクリプト(コード):

<?php

// Set required headers
header('Content-Type: application/json; charset=utf-8');
header('Access-Control-Allow-Origin: *');

/**
 * Example: First
 *
 * Get JSON data from JSON file and retun as JSON response
 */

// Get JSON data from JSON file
$json = file_get_contents('response.json');

// Output, response
echo $json;

/** =. =.=. =.=. =.=. =.=. =.=. =.=. =.=. =.=. =.=. =.  */

/**
 * Example: Second
 *
 * Build JSON data from PHP array and retun as JSON response
 */

// Or build JSON data from array (PHP)
$json_var = [
  'hashtag' => 'HealthMatters',
  'id' => '072b3d65-9168-49fd-a1c1-a4700fc017e0',
  'sentiment' => [
    'negative' => 44,
    'positive' => 56,
  ],
  'total' => '3400',
  'users' => [
    [
      'profile_image_url' => 'http://a2.twimg.com/profile_images/1285770264/PGP_normal.jpg',
      'screen_name' => 'rayalrumbel',
      'text' => 'Tweet (A), #HealthMatters because life is cool :) We love this life and want to spend more.',
      'timestamp' => '{{$timestamp}}',
    ],
    [
      'profile_image_url' => 'http://a2.twimg.com/profile_images/1285770264/PGP_normal.jpg',
      'screen_name' => 'mikedingdong',
      'text' => 'Tweet (B), #HealthMatters because life is cool :) We love this life and want to spend more.',
      'timestamp' => '{{$timestamp}}',
    ],
    [
      'profile_image_url' => 'http://a2.twimg.com/profile_images/1285770264/PGP_normal.jpg',
      'screen_name' => 'ScottMili',
      'text' => 'Tweet (C), #HealthMatters because life is cool :) We love this life and want to spend more.',
      'timestamp' => '{{$timestamp}}',
    ],
    [
      'profile_image_url' => 'http://a2.twimg.com/profile_images/1285770264/PGP_normal.jpg',
      'screen_name' => 'yogibawa',
      'text' => 'Tweet (D), #HealthMatters because life is cool :) We love this life and want to spend more.',
      'timestamp' => '{{$timestamp}}',
    ],
  ],
];

// Output, response
echo json_encode($json_var);

JSONファイル(JSON DATA):

{
    "hashtag": "HealthMatters", 
    "id": "072b3d65-9168-49fd-a1c1-a4700fc017e0", 
    "sentiment": {
        "negative": 44, 
        "positive": 56
    }, 
    "total": "3400", 
    "users": [
        {
            "profile_image_url": "http://a2.twimg.com/profile_images/1285770264/PGP_normal.jpg", 
            "screen_name": "rayalrumbel", 
            "text": "Tweet (A), #HealthMatters because life is cool :) We love this life and want to spend more.", 
            "timestamp": "{{$timestamp}}"
        }, 
        {
            "profile_image_url": "http://a2.twimg.com/profile_images/1285770264/PGP_normal.jpg", 
            "screen_name": "mikedingdong", 
            "text": "Tweet (B), #HealthMatters because life is cool :) We love this life and want to spend more.", 
            "timestamp": "{{$timestamp}}"
        }, 
        {
            "profile_image_url": "http://a2.twimg.com/profile_images/1285770264/PGP_normal.jpg", 
            "screen_name": "ScottMili", 
            "text": "Tweet (C), #HealthMatters because life is cool :) We love this life and want to spend more.", 
            "timestamp": "{{$timestamp}}"
        }, 
        {
            "profile_image_url": "http://a2.twimg.com/profile_images/1285770264/PGP_normal.jpg", 
            "screen_name": "yogibawa", 
            "text": "Tweet (D), #HealthMatters because life is cool :) We love this life and want to spend more.", 
            "timestamp": "{{$timestamp}}"
        }
    ]
}

JSONスクリーショット:

enter image description here

0
Neeraj Singh