bug41353.phpt 199 B

1234567891011121314
  1. --TEST--
  2. Bug #41353 (openssl_pkcs12_read() does not verify the type of the first arg)
  3. --EXTENSIONS--
  4. openssl
  5. --FILE--
  6. <?php
  7. $a = 2;
  8. openssl_pkcs12_read(1, $a, 1);
  9. echo "Done\n";
  10. ?>
  11. --EXPECT--
  12. Done