> Online tutorial : localtime in php
Showing posts with label localtime in php. Show all posts
Showing posts with label localtime in php. Show all posts

localtime in php

The localtime() function returns the array that contains the time components of unix time system
Syntax
localtime(timestamp,is_associative)
Example


<?php
print_r(localtime());
echo("

");
print_r(localtime(time(),true));
?>
output