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.
15 lines
380 B
PHP
15 lines
380 B
PHP
--TEST--
|
|
ldap_option_reqcert_basic() - Error test for TLS require cert ldap option
|
|
--CREDITS--
|
|
Edwin Hoksberg <edwin@edwinhoksberg.nl>
|
|
--SKIPIF--
|
|
<?php require_once __DIR__ .'/skipif.inc'; ?>
|
|
--FILE--
|
|
<?php
|
|
require "connect.inc";
|
|
$link = ldap_connect($host, $port);
|
|
$result = ldap_set_option($link, LDAP_OPT_X_TLS_REQUIRE_CERT, 9001);
|
|
var_dump($result);
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|