Skip to content

Instantly share code, notes, and snippets.

@PJZ9n
Created March 15, 2020 13:24
Show Gist options
  • Save PJZ9n/979ac9bed0971e0bb1a06f33572dd5df to your computer and use it in GitHub Desktop.
Save PJZ9n/979ac9bed0971e0bb1a06f33572dd5df to your computer and use it in GitHub Desktop.
Webサーバー(使う側)
<?php
//とても単純な例で、そのまま使うことを前提としていません
//同一ディレクトリに所持金記録用のmoney.jsonがあるとする
//処理金を返す
function getMoney(string $name): string {
$moneys = json_decode(file_get_contents("money.json"), true);
return $moneys[$name];
}
?>
<!-- 所持金の表示 -->
<h1>ABCさんの所持金: <?php echo getMoney("ABC") ?></h1>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment