php-src/ext/standard/tests/strings/strncasecmp_error.phpt
2020-07-21 14:47:03 +02:00

23 lines
590 B
PHP

--TEST--
Test strncasecmp() function : error conditions
--FILE--
<?php
echo "*** Testing strncasecmp() function: error conditions ***\n";
$str1 = 'string_val';
$str2 = 'string_val';
echo "-- Testing strncasecmp() function with invalid argument --\n";
$len = -10;
try {
var_dump( strncasecmp($str1, $str2, $len) );
} catch (\ValueError $e) {
echo $e->getMessage() . \PHP_EOL;
}
?>
--EXPECT--
*** Testing strncasecmp() function: error conditions ***
-- Testing strncasecmp() function with invalid argument --
strncasecmp(): Argument #3 ($length) must be greater than or equal to 0