1234567891011121314151617 |
- --TEST--
- Bug
- --EXTENSIONS--
- openssl
- --FILE--
- <?php
- $dir = __DIR__;
- $certs = array('bug39217cert2.txt', 'bug39217cert1.txt');
- foreach($certs as $cert) {
- $res = openssl_x509_parse(file_get_contents($dir . '/' . $cert));
- print_r($res['serialNumber']);
- echo "\n";
- }
- ?>
- --EXPECT--
- 163040343498260435477161879008842183802
- 15
|