mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
19 lines
521 B
PHP
19 lines
521 B
PHP
--TEST--
|
|
ldap_get_option() - Basic test for getting the TLS package ldap option
|
|
--CREDITS--
|
|
Chad Sikorra <Chad.Sikorra@gmail.com>
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
require "connect.inc";
|
|
$link = ldap_connect($host, $port);
|
|
|
|
$result = ldap_get_option($link, LDAP_OPT_X_TLS_PACKAGE, $optionval);
|
|
var_dump(in_array($optionval, ['GnuTLS', 'OpenSSL', 'MozNSS']));
|
|
// This is a read-only option.
|
|
var_dump(ldap_set_option($link, LDAP_OPT_X_TLS_PACKAGE, 'foo'));
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
bool(false)
|