happy cat image

everdevel

coding

login
NotificationX
  • Currently, only notices of comments are displayed.
  • no comment or please login

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

functiion : strtotime()

    strtotime(Time value as string);

For example, if the string is '2025-01-31', write the code as follows:

<?php
    $date = '2025-01-31';
    echo strtotime($date);
?>

So let's run the code above.

<?php
    $date = '2025-01-31';
    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

Thank you for visiting. If you have any inquiry or explanation of mistakes, please use the comments below.


    
    

Back to the course

ALL COMMENTS 0

Sort by