mirror of
https://github.com/php/php-src.git
synced 2024-12-12 19:33:31 +08:00
21 lines
564 B
Plaintext
21 lines
564 B
Plaintext
|
--TEST--
|
||
|
ldap_sasl_bind() - Basic anonymous binding
|
||
|
--CREDITS--
|
||
|
Patrick Allaert <patrickallaert@php.net>
|
||
|
# Belgian PHP Testfest 2009
|
||
|
--SKIPIF--
|
||
|
<?php require_once('skipif.inc'); ?>
|
||
|
<?php if (!function_exists("ldap_sasl_bind")) die("skip LDAP extension not compiled with SASL support"); ?>
|
||
|
--FILE--
|
||
|
<?php
|
||
|
require "connect.inc";
|
||
|
|
||
|
$link = ldap_connect($host, $port);
|
||
|
ldap_set_option($link, LDAP_OPT_PROTOCOL_VERSION, $protocol_version);
|
||
|
var_dump(ldap_sasl_bind($link, null, $passwd, 'DIGEST-MD5', 'realm', $sasl_user));
|
||
|
?>
|
||
|
===DONE===
|
||
|
--EXPECT--
|
||
|
bool(true)
|
||
|
===DONE===
|