Home
last modified time | relevance | path

Searched refs:strncmp (Results 1 – 25 of 96) sorted by relevance

1234

/PHP-7.4/ext/standard/tests/strings/
H A Dstrncmp_basic.phpt2 Test strncmp() function : basic functionality
12 echo "-- Testing strncmp() with single quoted string --\n";
13 var_dump( strncmp('Hello', 'Hello', 5) ); //expected: int(0)
17 echo "-- Testing strncmp() with double quoted string --\n";
22 echo "-- Testing strncmp() with here-doc string --\n";
26 var_dump( strncmp($str, "Hello", 5) ); //expected: int(0)
27 var_dump( strncmp($str, "Hi", 5) ); //expected: value < 0
28 var_dump( strncmp("Hi", $str, 5) ); //expected: value > 0
34 -- Testing strncmp\(\) with single quoted string --
38 -- Testing strncmp\(\) with double quoted string --
[all …]
H A Dstrncmp_error.phpt2 Test strncmp() function : error conditions
5 /* Prototype : int strncmp ( string $str1, string $str2, int $len );
10 /* Test strncmp() function with more/less number of args and invalid args */
12 echo "*** Testing strncmp() function: error conditions ***\n";
18 var_dump( strncmp() ); //Zero argument
19 var_dump( strncmp($str1) ); //One argument, less than expected no. of args
25 var_dump( strncmp($str1, $str2, $len) );
29 *** Testing strncmp() function: error conditions ***
31 Warning: strncmp() expects exactly 3 parameters, 0 given in %s on line %d
34 Warning: strncmp() expects exactly 3 parameters, 1 given in %s on line %d
[all …]
H A Dstrncmp_variation3.phpt2 Test strncmp() function: usage variations - different lengths
5 /* Prototype : int strncmp ( string $str1, string $str2, int $len );
10 /* Test strncmp() with various lengths */
12 echo "*** Test strncmp() function: with different lengths ***\n";
19 var_dump( strncmp($str1, $str2, $len) );
24 \*\*\* Test strncmp\(\) function: with different lengths \*\*\*
H A Dstrncmp_variation7.phpt2 Test strncmp() function : usage variations - binary safe(null terminated strings)
5 /* Prototype : int strncmp ( string $str1, string $str2, int $len );
10 /* Test strncmp() function with binary values passed to 'str1' & 'str2' and with the null terminate…
12 echo "*** Test strncmp() function: Checking with the null terminated strings ***\n";
17 var_dump( strncmp($str1, $str2, 12) ); //expected: int(5);
22 *** Test strncmp() function: Checking with the null terminated strings ***
H A Dstrncmp_variation8.phpt2 Test strncmp() function: usage variations - single quoted strings
5 /* Prototype : int strncmp ( string $str1, string $str2, int $len );
10 /* Test strncmp() function with single quoted strings for 'str1', 'str2' */
12 echo "*** Test strncmp() function: with single quoted strings ***\n";
24 var_dump( strncmp( $strings[$index1], $strings[$index2], (strlen($strings[$index1]) + 1) ) );
31 \*\*\* Test strncmp\(\) function: with single quoted strings \*\*\*
H A Dstrncmp_variation2.phpt2 Test strncmp() function: usage variations - double quoted strings
5 /* Prototype : int strncmp ( string $str1, string $str2, int $len );
10 /* Test strncmp() function with double quoted strings for 'str1', 'str2' */
12 echo "*** Test strncmp() function: with double quoted strings ***\n";
25 var_dump( strncmp( $strings[$index1], $strings[$index2], (strlen($strings[$index1]) + 1) ) );
32 \*\*\* Test strncmp\(\) function: with double quoted strings \*\*\*
H A Dstrncmp_variation1.phpt2 Test strncmp() function: usage variations - case-sensitivity
5 /* Prototype : int strncmp ( string $str1, string $str2, int $len );
10 /* Test strncmp() function with upper-case and lower-case alphabets as inputs for 'str1' and 'str2'…
12 echo "*** Test strncmp() function: with alphabets ***\n";
15 …var_dump( strncmp( chr($ASCII), chr($ASCII), 1 ) ); //comparing uppercase letters with uppercase …
16 …var_dump( strncmp( chr($ASCII), chr($ASCII + 32), 1 ) ); //comparing uppercase letters with lower…
21 …var_dump( strncmp( chr($ASCII), chr($ASCII), 1 ) ); //comparing lowercase letters with lowercase …
22 …var_dump( strncmp( chr($ASCII), chr($ASCII - 32), 1 ) ); //comparing lowercase letters with upper…
27 \*\*\* Test strncmp\(\) function: with alphabets \*\*\*
H A Dstrncmp_variation9.phpt2 Test strncmp() function: usage variations - different inputs(heredoc strings)
5 /* Prototype : int strncmp ( string $str1, string $str2, int $len );
10 /* Test strncmp() function with different strings for 'str1', 'str2' and considering case sensitive…
12 echo "*** Test strncmp() function: with different input strings ***\n";
50 var_dump( strncmp( $strings[$index1], $strings[$index1], strlen($strings[$index1]) ) );
56 *** Test strncmp() function: with different input strings ***
H A Dbug36944.phpt2 Bug #36944 (strncmp & strncasecmp do not return false on negative string length)
6 var_dump(strncmp("test ", "e", -1));
7 var_dump(strncmp("test ", "e", 10));
8 var_dump(strncmp("test ", "e", 0));
H A Dbug40754.phpt24 var_dump(strncmp("abcde", "abc", $v));
/PHP-7.4/Zend/tests/
H A D004.phpt2 strncmp() tests
6 var_dump(strncmp("", ""));
7 var_dump(strncmp("", "", 100));
8 var_dump(strncmp("aef", "dfsgbdf", -1));
9 var_dump(strncmp("fghjkl", "qwer", 0));
10 var_dump(strncmp("qwerty", "qwerty123", 6));
11 var_dump(strncmp("qwerty", "qwerty123", 7));
16 Warning: strncmp() expects exactly 3 parameters, 2 given in %s on line %d
/PHP-7.4/ext/standard/
H A Dversioning.c105 if (strncmp(form1, pp->name, strlen(pp->name)) == 0) { in compare_special_version_forms()
111 if (strncmp(form2, pp->name, strlen(pp->name)) == 0) { in compare_special_version_forms()
224 if (!strncmp(op, "<", op_len) || !strncmp(op, "lt", op_len)) { in PHP_FUNCTION()
227 if (!strncmp(op, "<=", op_len) || !strncmp(op, "le", op_len)) { in PHP_FUNCTION()
230 if (!strncmp(op, ">", op_len) || !strncmp(op, "gt", op_len)) { in PHP_FUNCTION()
233 if (!strncmp(op, ">=", op_len) || !strncmp(op, "ge", op_len)) { in PHP_FUNCTION()
236 if (!strncmp(op, "==", op_len) || !strncmp(op, "=", op_len) || !strncmp(op, "eq", op_len)) { in PHP_FUNCTION()
239 if (!strncmp(op, "!=", op_len) || !strncmp(op, "<>", op_len) || !strncmp(op, "ne", op_len)) { in PHP_FUNCTION()
H A Dphp_crypt_r.c152 if (strncmp(sp, MD5_MAGIC, MD5_MAGIC_LEN) == 0) { in php_md5_crypt_r()
332 if (strncmp(sp, MD5_MAGIC, MD5_MAGIC_LEN) == 0) in php_md5_crypt_r()
/PHP-7.4/ext/phar/tests/
H A Dbug69279a.phpt13 var_dump(strncmp(file_get_contents(__DIR__ . '/bug69279a/1.txt'), 'Lorem ipsum', 11));
14 var_dump(strncmp(file_get_contents(__DIR__ . '/bug69279a/2.txt'), 'foo', 3));
15 var_dump(strncmp(file_get_contents(__DIR__ . '/bug69279a/3.txt'), 'Lorem ipsum', 11));
/PHP-7.4/ext/fileinfo/libmagic/
H A Dis_tar.c126 if (strncmp(header->header.magic, GNUTMAGIC, in is_tar()
130 if (strncmp(header->header.magic, TMAGIC, in is_tar()
H A Dapptype.c132 if (strncmp((const char *)buf, "MZ", 2)) in file_os2_apptype()
/PHP-7.4/ext/tokenizer/tests/
H A Dtoken_get_all_variation19.phpt39 if (strncmp($token[1], '<?php', 5) == 0) {
42 if (strncmp($token[1], '?>', 2) == 0) {
/PHP-7.4/sapi/cli/tests/
H A Dbug73630.phpt11 var_dump(strncmp($_SERVER['REQUEST_URI'], "/overflow.php", strlen("/overflow.php")));
H A Dphp_cli_server_004.phpt12 php_cli_server_start('foreach($_SERVER as $k=>$v) { if (!strncmp($k, "HTTP", 4)) var_dump( $k . ":"…
/PHP-7.4/ext/standard/tests/file/
H A Dclearstatcache_001.phpt5 if (strncmp(PHP_OS, "WIN", 3) === 0) {
/PHP-7.4/ext/readline/
H A Dreadline_cli.c354 if (!strncmp(code + i - heredoc_len + 1, heredoc_tag, heredoc_len)) { in cli_is_valid_code()
365 if ((CG(short_tags) && !strncmp(code+i-1, "<?", 2)) in cli_is_valid_code()
366 || (i > 3 && !strncmp(code+i-4, "<?php", 5)) in cli_is_valid_code()
422 if (!textlen || !strncmp(ZSTR_VAL(name), text, textlen)) { in cli_completion_generator_ht()
715 if (strlen(sapi_module.name) >= 3 && 0 == strncmp("cli", sapi_module.name, 3)) { \
/PHP-7.4/win32/
H A Dconsole.c116 …return strlen(sapi_module.name) >= sizeof("cli") - 1 && !strncmp(sapi_module.name, "cli", sizeof("… in php_win32_console_is_cli_sapi()
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_string_utils.c157 PRIV(strncmp)(PCRE2_SPTR str1, PCRE2_SPTR str2, size_t len) in PRIV() argument
/PHP-7.4/ext/dba/
H A Ddba_db4.c50 && (!strncmp(msg, "fop_read_meta", sizeof("fop_read_meta")-1) in php_dba_db4_errcall_fcn()
51 || !strncmp(msg, "BDB0004 fop_read_meta", sizeof("BDB0004 fop_read_meta")-1))) { in php_dba_db4_errcall_fcn()
/PHP-7.4/main/
H A Dgetopt.c114 …} else if (opts[php_optidx].opt_name && !strncmp(&argv[*optind][2], opts[php_optidx].opt_name, arg… in php_getopt()

Completed in 28 milliseconds

1234