????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.28 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 : /home/b8009/php-5.6.22/ext/pcre/tests/ |
Upload File : |
--TEST--
abusing preg_match()
--FILE--
<?php
foreach (array('2006-05-13', '06-12-12', 'data: "12-Aug-87"') as $s) {
var_dump(preg_match('~
(?P<date>
(?P<year>(\d{2})?\d\d) -
(?P<month>(?:\d\d|[a-zA-Z]{2,3})) -
(?P<day>[0-3]?\d))
~x', $s, $m));
var_dump($m);
}
?>
--EXPECT--
int(1)
array(10) {
[0]=>
string(10) "2006-05-13"
["date"]=>
string(10) "2006-05-13"
[1]=>
string(10) "2006-05-13"
["year"]=>
string(4) "2006"
[2]=>
string(4) "2006"
[3]=>
string(2) "20"
["month"]=>
string(2) "05"
[4]=>
string(2) "05"
["day"]=>
string(2) "13"
[5]=>
string(2) "13"
}
int(1)
array(10) {
[0]=>
string(8) "06-12-12"
["date"]=>
string(8) "06-12-12"
[1]=>
string(8) "06-12-12"
["year"]=>
string(2) "06"
[2]=>
string(2) "06"
[3]=>
string(0) ""
["month"]=>
string(2) "12"
[4]=>
string(2) "12"
["day"]=>
string(2) "12"
[5]=>
string(2) "12"
}
int(1)
array(10) {
[0]=>
string(8) "12-Aug-8"
["date"]=>
string(8) "12-Aug-8"
[1]=>
string(8) "12-Aug-8"
["year"]=>
string(2) "12"
[2]=>
string(2) "12"
[3]=>
string(0) ""
["month"]=>
string(3) "Aug"
[4]=>
string(3) "Aug"
["day"]=>
string(1) "8"
[5]=>
string(1) "8"
}