Skip to content

Commit 41de89f

Browse files
committed
Merge branch 'PHP-5.6' into PHP-7.0
2 parents c67fc6b + e62db72 commit 41de89f

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
--TEST--
2+
openssl_get_cipher_methods basic test
3+
--CREDITS--
4+
marcosptf - <marcosptf@yahoo.com.br>
5+
--SKIPIF--
6+
<?php
7+
if (!extension_loaded("openssl")) print "skip";
8+
?>
9+
--FILE--
10+
<?php
11+
var_dump(is_array(openssl_get_cipher_methods(true)));
12+
var_dump(is_array(openssl_get_cipher_methods(false)));
13+
?>
14+
--EXPECT--
15+
bool(true)
16+
bool(true)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
--TEST--
2+
openssl_get_md_methods basic test
3+
--CREDITS--
4+
marcosptf - <marcosptf@yahoo.com.br>
5+
--SKIPIF--
6+
<?php
7+
if (!extension_loaded("openssl")) print "skip";
8+
?>
9+
--FILE--
10+
<?php
11+
var_dump(is_array(openssl_get_md_methods(true)));
12+
var_dump(is_array(openssl_get_md_methods(false)));
13+
?>
14+
--EXPECT--
15+
bool(true)
16+
bool(true)

0 commit comments

Comments
 (0)