Calendar
[ class tree: Calendar ] [ index: Calendar ] [ all elements ]

Source for file 9.php

Documentation is available at 9.php

  1. <?php
  2. /**
  3. * Description: simple example on i18N
  4. */
  5. if !@include 'Calendar/Calendar.php' {
  6.     define('CALENDAR_ROOT','../../');
  7. }
  8. require_once CALENDAR_ROOT.'Day.php';
  9.  
  10. $Day new Calendar_Day(2003,10,23);
  11.  
  12. setlocale (LC_TIME"de_DE")// Unix based (probably)
  13. // setlocale (LC_TIME, "ge"); // Windows
  14.  
  15. echo strftime('%A %d %B %Y',$Day->getTimeStamp()));
  16. ?>

Documentation generated on Mon, 11 Mar 2019 15:37:47 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.