QUIZGUM

Coding Class

Quizgum : Convert date values to timestamps - strtotime()

Convert string time value to time stamp value : strtotime()

functiion : strtotime()

  1. strtotime(Time value as string);

For example, if the string is '2025-04-27', write the code as follows:

  1. <?php
  2. $date = '2025-04-27';
  3. echo strtotime($date);
  4. ?>

So let's run the code above.

  1. <?php
  2. $date = '2025-04-27';
  3. echo strtotime($date);
  4. ?>

Here is the result screen: The time value keeps changing, so when you run it, it will output different values ​​than the image.

strtotime php