php-src/ext/openssl/tests/bug41353.phpt
Nikita Popov 7485978339
Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

15 lines
199 B
PHP

--TEST--
Bug #41353 (openssl_pkcs12_read() does not verify the type of the first arg)
--EXTENSIONS--
openssl
--FILE--
<?php
$a = 2;
openssl_pkcs12_read(1, $a, 1);
echo "Done\n";
?>
--EXPECT--
Done