Skip to content

Instantly share code, notes, and snippets.

@yano3nora
Last active July 1, 2017 09:17
Show Gist options
  • Save yano3nora/ba272e20d0527aa8798169d040ac4f5e to your computer and use it in GitHub Desktop.
Save yano3nora/ba272e20d0527aa8798169d040ac4f5e to your computer and use it in GitHub Desktop.
[php: Calc age by birthday] src = http://qiita.com/arthur87/items/aa3355f218d4c9a90436 #php
// calc age
$today = date("Ymd");
$birth = "19800901";
$age = floor(($today-$birth)/10000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment