php-8.0.30-src/ext/standard/tests/strings/join_error.phpt

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