summaryrefslogtreecommitdiff
path: root/ext/ldap/tests/ldap_err2str_error.phpt
blob: 0f768d2d65172747d992a7f3480d071daf8cde2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--TEST--
ldap_err2str() - Incorrect usage of number to string conversion
--CREDITS--
Patrick Allaert <patrickallaert@php.net>
# Belgian PHP Testfest 2009
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
// Too few args
var_dump(ldap_err2str());

// Too many args
var_dump(ldap_err2str(1, "Additional data"));

var_dump(ldap_err2str("weird"));
?>
===DONE===
--EXPECTF--
Warning: ldap_err2str() expects exactly 1 parameter, 0 given in %s on line %d
NULL

Warning: ldap_err2str() expects exactly 1 parameter, 2 given in %s on line %d
NULL

Warning: ldap_err2str() expects parameter 1 to be long, %unicode_string_optional% given in %s on line %d
NULL
===DONE===