QUIZGUM

Coding Class

Quizgum : Convert date values to timestamps - strtotime()

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

functiion : strtotime()

    strtotime(Time value as string);

For example, if the string is '2024-04-20', write the code as follows:

<?php
    $date = '2024-04-20';
    echo strtotime($date);
?>

So let's run the code above.

<?php
    $date = '2024-04-20';
    echo strtotime($date);
?>

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