blob: f52c4c1184d6f1147f4302338b8d734cdc9e5554 (
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
|
--TEST--
Test join() function: error conditions
--FILE--
<?php
echo "*** Testing join() : error conditions ***\n";
// Less than expected number of arguments
echo "\n-- Testing join() with less than expected no. of arguments --\n";
$glue = 'string_val';
try {
var_dump(join($glue));
} catch (TypeError $e) {
echo $e->getMessage(), "\n";
}
echo "Done\n";
?>
--EXPECT--
*** Testing join() : error conditions ***
-- Testing join() with less than expected no. of arguments --
join(): Argument #1 ($pieces) must be of type array, string given
Done
|