25 lines
554 B
PHP
25 lines
554 B
PHP
--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
|