summaryrefslogtreecommitdiff
path: root/ext/interbase/tests/bug46247.phpt
blob: f682ff66f0080769b3d77f5f195b164315971217 (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
29
30
31
32
33
34
35
--TEST--
Bug #46247 (ibase_set_event_handler() is allowing to pass callback without event)
--SKIPIF--
<?php include("skipif.inc"); ?>
--FILE--
<?php

require("interbase.inc");

$db = ibase_connect($test_base);

function test() { }

ibase_set_event_handler();

ibase_set_event_handler('test', 1);
ibase_set_event_handler($db, 'test', 1);
ibase_set_event_handler(NULL, 'test', 1);


ibase_set_event_handler('foo', 1);
ibase_set_event_handler($db, 'foo', 1);
ibase_set_event_handler(NULL, 'foo', 1);

?>
--EXPECTF--
Warning: Wrong parameter count for ibase_set_event_handler() in %s on line %d

Warning: ibase_set_event_handler(): supplied argument is not a valid InterBase link resource in %s on line %d

Warning: ibase_set_event_handler(): Callback argument foo is not a callable function in %s on line %d

Warning: ibase_set_event_handler(): Callback argument foo is not a callable function in %s on line %d

Warning: ibase_set_event_handler(): supplied argument is not a valid InterBase link resource in %s on line %d