PageRenderTime 825ms CodeModel.GetById 81ms RepoModel.GetById 53ms app.codeStats 0ms

/hphp/test/zend/good/ext/standard/tests/time/idate.php

http://github.com/facebook/hiphop-php
PHP | 7 lines | 7 code | 0 blank | 0 comment | 1 complexity | 0a8b5b12b0a8e6b19ff8c362a76b455b 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_default_timezone_set('GMT0');
  3. $tmp = "UYzymndjHGhgistwLBIW";
  4. for($a = 0;$a < strlen($tmp); $a++){
  5. echo $tmp[$a], ': ', idate($tmp[$a], 1043324459)."\n";
  6. }
  7. }