mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-13 03:46:26 +08:00
Add PHP Extension for GmSSL
View http://gmssl.org/docs/php-api.html for more info.
This commit is contained in:
19
php/ext/openssl/tests/bug70395.phpt
Normal file
19
php/ext/openssl/tests/bug70395.phpt
Normal file
@@ -0,0 +1,19 @@
|
||||
--TEST--
|
||||
Bug #70395 (Missing ARG_INFO for openssl_seal())
|
||||
--SKIPIF--
|
||||
<?php
|
||||
if (!extension_loaded("openssl")) die("skip openssl not loaded");
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
$func = new ReflectionFunction('openssl_seal');
|
||||
$param = $func->getParameters()[4];
|
||||
var_dump($param);
|
||||
var_dump($param->isOptional());
|
||||
?>
|
||||
--EXPECTF--
|
||||
object(ReflectionParameter)#%d (1) {
|
||||
["name"]=>
|
||||
string(6) "method"
|
||||
}
|
||||
bool(true)
|
||||
Reference in New Issue
Block a user