File: date_basic1.phpt

package info (click to toggle)
php5 5.6.7%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 150,376 kB
  • sloc: ansic: 727,510; php: 21,966; sh: 12,356; cpp: 8,763; xml: 6,105; yacc: 1,551; exp: 1,514; makefile: 1,461; pascal: 1,048; awk: 538; perl: 315; sql: 22
file content (41 lines) | stat: -rw-r--r-- 1,257 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
--TEST--
Test date() function : basic functionality 
--FILE--
<?php
/* Prototype  : string date  ( string $format  [, int $timestamp  ] )
 * Description: Format a local time/date.
 * Source code: ext/date/php_date.c
 */

//Set the default time zone 
date_default_timezone_set("Europe/London");

echo "*** Testing date() : basic functionality ***\n";

$timestamp = mktime(10, 44, 30, 2, 27, 2009);

var_dump( date("F j, Y, g:i a", $timestamp) );     
var_dump( date("m.d.y", $timestamp) );                         
var_dump( date("j, n, Y", $timestamp) );             
var_dump( date("Ymd", $timestamp) );      
var_dump( date('h-i-s, j-m-y, it is w Day', $timestamp) );    
var_dump( date('\i\t \i\s \t\h\e jS \d\a\y.', $timestamp) );
var_dump( date("D M j G:i:s T Y", $timestamp) );
var_dump( date('H:m:s \m \i\s\ \m\o\n\t\h', $timestamp) );  
var_dump( date("H:i:s", $timestamp) );

?>
===DONE===
--EXPECT--
*** Testing date() : basic functionality ***
string(27) "February 27, 2009, 10:44 am"
string(8) "02.27.09"
string(11) "27, 2, 2009"
string(8) "20090227"
string(39) "10-44-30, 27-02-09, 4428 4430 5 Friam09"
string(19) "it is the 27th day."
string(28) "Fri Feb 27 10:44:30 GMT 2009"
string(19) "10:02:30 m is month"
string(8) "10:44:30"
===DONE===