source: sandbox/2.5.1-evolucao/phpgwapi/inc/adodb/tests/time.php @ 8222

Revision 8222, 520 bytes checked in by angelo, 11 years ago (diff)

Ticket #3491 - Compatibilizar Expresso com novas versoes do PHP

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2
3include_once('../adodb-time.inc.php');
4adodb_date_test();
5?>
6<?php
7//require("adodb-time.inc.php");
8
9$datestring = "2063-12-24"; // string normally from mySQL
10$stringArray = explode("-", $datestring);
11$date = adodb_mktime(0,0,0,$stringArray[1],$stringArray[2],$stringArray[0]);
12
13$convertedDate = adodb_date("d-M-Y", $date); // converted string to UK style date
14
15echo( "Original: $datestring<br>" );
16echo( "Converted: $convertedDate" ); //why is string returned as one day (3 not 4) less for this example??
17
18?>
Note: See TracBrowser for help on using the repository browser.