PageRenderTime 43ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/hphp/test/zend/good/ext/date/tests/date-lenient.php

http://github.com/facebook/hiphop-php
PHP | 11 lines | 10 code | 1 blank | 0 comment | 0 complexity | 9b9ac37eda1cd472733661610e007316 MD5 | raw file
Possible License(s): LGPL-2.1, BSD-2-Clause, BSD-3-Clause, MPL-2.0-no-copyleft-exception, MIT, LGPL-2.0, Apache-2.0
  1. <?hh <<__EntryPoint>> function main(): void {
  2. $date = "06/08/04 12:00";
  3. print_r( date_parse_from_format( 'm/d/y', $date ) );
  4. print_r( date_parse_from_format( 'm/d/y+', $date ) );
  5. print_r( date_parse_from_format( '+m/d/y', $date ) );
  6. print_r( date_parse_from_format( 'm/d/y++', $date ) );
  7. $date = "06/08/04";
  8. print_r( date_parse_from_format( 'm/d/y+', $date ) );
  9. print_r( date_parse_from_format( '+m/d/y', $date ) );
  10. }