TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
671 B
34 lines
671 B
--TEST--
|
|
Test strncasecmp() function: usage variations - various lengths
|
|
--FILE--
|
|
<?php
|
|
/* Test strncasecmp() with various lengths */
|
|
|
|
echo "*** Test strncasecmp() function: with different lengths ***\n";
|
|
/* definitions of required variables */
|
|
$str1 = "Hello, World\n";
|
|
$str2 = "Hello, world\n";
|
|
|
|
/* loop through to compare the strings, for various length values */
|
|
for($len = strlen($str1); $len >= 0; $len--) {
|
|
var_dump( strncasecmp($str1, $str2, $len) );
|
|
}
|
|
echo "*** Done ***\n";
|
|
?>
|
|
--EXPECT--
|
|
*** Test strncasecmp() function: with different lengths ***
|
|
int(0)
|
|
int(0)
|
|
int(0)
|
|
int(0)
|
|
int(0)
|
|
int(0)
|
|
int(0)
|
|
int(0)
|
|
int(0)
|
|
int(0)
|
|
int(0)
|
|
int(0)
|
|
int(0)
|
|
int(0)
|
|
*** Done ***
|
|
|