Skip to content

Instantly share code, notes, and snippets.

@taitokiss
Created November 1, 2018 02:31
Show Gist options
  • Save taitokiss/177965c897d247e5a2816c48de70c762 to your computer and use it in GitHub Desktop.
Save taitokiss/177965c897d247e5a2816c48de70c762 to your computer and use it in GitHub Desktop.
PHPの動作テスト
<!DOCTYPE html>
<html lang="ja">
<head><title>php sample</title></head>
<body>
 <h1>PHPテスト 日付の表示</h1>
 <p>
  今日は
 <?php
  echo date('Y年m月d日');
 ?>
  です。
 </p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment