mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
18 lines
382 B
PHP
18 lines
382 B
PHP
--TEST--
|
|
Bug #65689 (GeneralizedTime format parsing)
|
|
--EXTENSIONS--
|
|
openssl
|
|
--FILE--
|
|
<?php
|
|
$crt = substr(__FILE__, 0, -4).'.crt';
|
|
$info = openssl_x509_parse("file://$crt");
|
|
var_dump($info["validFrom"], $info["validFrom_time_t"], $info["validTo"], $info["validTo_time_t"]);
|
|
?>
|
|
Done
|
|
--EXPECTF--
|
|
string(15) "20090303125318Z"
|
|
int(12360%d)
|
|
string(15) "20240303125318Z"
|
|
int(17094%d)
|
|
Done
|