| | |
Time Stamp Help
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
Use the date() function: http://php.net/date
php Syntax (Toggle Plain Text)
$time = time(); $date = date('d-m-L H:i:s' , $time); echo $date; // 03-05-2008 18:05:44
Here,I made a function just for you using explode function:
Enjoy!!!
php Syntax (Toggle Plain Text)
//$var is your timestamp... function x($var) { list($date,$time)=explode(" ", $var); list($year,$month,$day)=explode("-",$date); $newdate=$month."-".$day."-".$year." ".$time; return $newdate; }
Enjoy!!!
php Syntax (Toggle Plain Text)
<?php //old time $old_time = '2008-03-05 18:05:44'; //convert to UNIX timestamp $timestamp = strtotime($old_time); //fetch new format $new_time = date('m-d-Y H:i:s' , $timestamp); //output new time echo $new_time; ?>
The End
•
•
•
•
Use the date() function: http://php.net/date
php Syntax (Toggle Plain Text)
$time = time(); $date = date('d-m-L H:i:s' , $time); echo $date; // 03-05-2008 18:05:44
The End
![]() |
Similar Threads
- I just need TIME not Date. (MS SQL)
- date and time in file name (VB.NET)
- Convert time stamp to date using php (PHP)
- File with date + time (Python)
- Perl- How to call an event after a time delay (Perl)
- Need real time in XP (Visual Basic 4 / 5 / 6)
- Recording time stamp (PHP)
- help with clean win2000 install (Windows NT / 2000 / XP)
Other Threads in the PHP Forum
- Previous Thread: Choosing Symfony , Zend Framework, CakePHP
- Next Thread: PHPEclipse installation
| Thread Tools | Search this Thread |
apache api array beginner beneath binary broadband broken button cakephp checkbox class cms code countingeverycharactersfromastring crack cron curl database date display dynamic echo email error fcc file files folder form forms freelancing function functions google href htaccess html image include incode insert integration ip javascript joomla limit link login mail match menu method mlm mod_rewrite multiple mysql oop pageing pagerank paypal pdf php problem query radio random recursion recursiveloop remote script search server sessions sms smtp soap source space sql strip_tags subversion support! survey syntax system table template tutorial undefined update upload url validator variable video virus web window.onbeforeunload=closeme; youtube





