Skip to content

Instantly share code, notes, and snippets.

@yoheiMune
Created August 23, 2017 15:09
Show Gist options
  • Save yoheiMune/9a68c617feb239782c4def8cee2eba3f to your computer and use it in GitHub Desktop.
Save yoheiMune/9a68c617feb239782c4def8cee2eba3f to your computer and use it in GitHub Desktop.
JSONを返却するサンプルです
<?php
// レスポンスヘッダーをJSONに指定する
header('Content-Type: application/json');
// 例えば、以下のデータを返したい場合に
$user = array(
'id' => 1,
'name' => 'Yohei'
);
// このようにJSONで返却できます
print(json_encode($user));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment