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