mirror of
https://github.com/php/php-src.git
synced 2024-12-14 20:33:36 +08:00
25 lines
650 B
PHP
25 lines
650 B
PHP
--TEST--
|
|
ldap_option_reqcert_basic() - Basic test to check if PHP can connect to a LDAP server with an invalid certificate with certificate checking disabled
|
|
--CREDITS--
|
|
Edwin Hoksberg <edwin@edwinhoksberg.nl>
|
|
--SKIPIF--
|
|
<?php
|
|
require_once dirname(__FILE__) .'/skipif.inc';
|
|
require_once dirname(__FILE__) .'/skipifbindfailure.inc';
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
require "connect.inc";
|
|
|
|
ldap_set_option(null, LDAP_OPT_X_TLS_REQUIRE_CERT, LDAP_OPT_X_TLS_NEVER);
|
|
|
|
$link = ldap_connect($host, $port);
|
|
ldap_set_option($link, LDAP_OPT_PROTOCOL_VERSION, $protocol_version);
|
|
|
|
var_dump(@ldap_bind($link, $user, $passwd));
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
bool(true)
|
|
===DONE===
|