mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
19 lines
414 B
PHP
19 lines
414 B
PHP
--TEST--
|
|
ldap_bind() - Basic anonymous binding
|
|
--CREDITS--
|
|
Patrick Allaert <patrickallaert@php.net>
|
|
# Belgian PHP Testfest 2009
|
|
--EXTENSIONS--
|
|
ldap
|
|
--SKIPIF--
|
|
<?php require_once __DIR__ .'/skipifbindfailure.inc'; ?>
|
|
--FILE--
|
|
<?php
|
|
require "connect.inc";
|
|
|
|
$link = ldap_connect($host, $port);
|
|
ldap_set_option($link, LDAP_OPT_PROTOCOL_VERSION, $protocol_version);
|
|
var_dump(ldap_bind($link));
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|