mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
19 lines
334 B
PHP
19 lines
334 B
PHP
--TEST--
|
|
ldap_connect() - Basic connection
|
|
--CREDITS--
|
|
Patrick Allaert <patrickallaert@php.net>
|
|
# Belgian PHP Testfest 2009
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
require "connect.inc";
|
|
|
|
$link = ldap_connect($host, $port);
|
|
var_dump($link);
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
resource(%d) of type (ldap link)
|
|
===DONE===
|