Annotation of embedaddon/php/ext/date/tests/date_format_basic1.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: Test date_format() function : basic functionality
! 3: --FILE--
! 4: <?php
! 5: /* Prototype : string date_format ( DateTime $object , string $format )
! 6: * Description: Returns date formatted according to given format
! 7: * Source code: ext/date/php_date.c
! 8: * Alias to functions: DateTime::format
! 9: */
! 10:
! 11: //Set the default time zone
! 12: date_default_timezone_set("Europe/London");
! 13:
! 14: echo "*** Testing date_format() : basic functionality ***\n";
! 15: $date = date_create("2005-07-14 22:30:41");
! 16:
! 17: var_dump( date_format($date, "F j, Y, g:i a") );
! 18: var_dump( date_format($date, "m.d.y") );
! 19: var_dump( date_format($date, "j, n, Y") );
! 20: var_dump( date_format($date, "Ymd") );
! 21: var_dump( date_format($date, 'h-i-s, j-m-y, it is w Day') );
! 22: var_dump( date_format($date, '\i\t \i\s \t\h\e jS \d\a\y.') );
! 23: var_dump( date_format($date, "D M j G:i:s T Y") );
! 24: var_dump( date_format($date, 'H:m:s \m \i\s\ \m\o\n\t\h') );
! 25: var_dump( date_format($date, "H:i:s") );
! 26:
! 27: ?>
! 28: ===DONE===
! 29: --EXPECTF--
! 30: *** Testing date_format() : basic functionality ***
! 31: string(23) "July 14, 2005, 10:30 pm"
! 32: string(8) "07.14.05"
! 33: string(11) "14, 7, 2005"
! 34: string(8) "20050714"
! 35: string(39) "10-30-41, 14-07-05, 3031 3041 4 Thupm05"
! 36: string(19) "it is the 14th day."
! 37: string(28) "Thu Jul 14 22:30:41 BST 2005"
! 38: string(19) "22:07:41 m is month"
! 39: string(8) "22:30:41"
! 40: ===DONE===
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>