コードで生年月日に基づいて年齢を計算する方法
生年月日からユーザーの年齢を計算することは、一般的なプログラミング タスクです。 PHP では、これを実現するための複数の方法があります。
オブジェクト指向 DateTime クラスの使用 (PHP >= 5.3.0)
<code class="php">// Instantiate a DateTime object for the birth date $birthDate = new DateTime('1999-03-15'); // Instantiate a DateTime object for the current date $currentDate = new DateTime('now'); // Calculate the difference between the two dates in years $age = $currentDate->diff($birthDate)->y; // Output the age echo $age;</code>
手続き型日付関数の使用 (PHP >= 5.3.0)
<code class="php">// Calculate the difference between the dates using date_diff() $age = date_diff(date_create('1999-03-15'), date_create('now'))->y; // Output the age echo $age;</code>
MySQL クエリの使用 (MySQL >= 5.0.0)
If生年月日は MySQL データベースに保存されているため、次のクエリを使用して年齢を計算できます:
<code class="sql">SELECT TIMESTAMPDIFF(YEAR, '1999-03-15', CURDATE()) AS age;</code>
このクエリは、指定された日付と現在の日付の差を年単位で計算し、次のように返します。年齢列。
以上がさまざまなプログラミングアプローチ (PHP と MySQL) で生年月日からユーザーの年齢を計算する方法は?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。