summaryrefslogtreecommitdiff
path: root/ext/ldap/tests/ldap_first_attribute_error.phpt
blob: f7016c539f766e094eaca5b631753044cc0decec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
ldap_first_attribute() - Testing ldap_first_attribute() that should fail
--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(ldap_first_attribute($link));
var_dump(ldap_first_attribute($link, $link));
?>
===DONE===
--EXPECTF--
Warning: ldap_first_attribute() expects %s 2 parameters, 1 given in %s on line %d
NULL

Warning: ldap_first_attribute(): supplied resource is not a valid ldap result entry resource in %s on line %d
bool(false)
===DONE===