Home
last modified time | relevance | path

Searched refs:strcspn (Results 1 – 19 of 19) sorted by relevance

/PHP-7.4/ext/standard/tests/strings/
H A Dstrcspn_basic.phpt2 Test strcspn() function : basic functionality
5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
13 * Testing strcspn() : basic functionality
16 echo "*** Testing strcspn() : basic functionality ***\n";
25 // Calling strcspn() with all possible arguments
26 var_dump( strcspn($str, $mask, $start, $len) );
28 // Calling strcspn() with three arguments
29 var_dump( strcspn($str, $mask, $start) );
31 // Calling strcspn() with default arguments
32 var_dump( strcspn($str, $mask) );
[all …]
H A Dbug39032.phpt2 Bug #39032 (strcspn() stops on null character)
6 var_dump(strcspn(chr(0),"x"));
7 var_dump(strcspn(chr(0),""));
8 var_dump(strcspn(chr(0),"qweqwe"));
9 var_dump(strcspn(chr(1),"qweqwe"));
H A Dstrcspn.phpt2 Test strcspn() behavior
9 var_dump(strcspn($a,$b));
10 var_dump(strcspn($a,$b,9));
11 var_dump(strcspn($a,$b,9,6));
12 var_dump(strcspn('a', 'B', 1, 2147483647));
H A Dstrcspn_variation9.phpt2 Test strcspn() function : usage variations - different strings with default start and len args
5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strcspn(substr($s,$start,$len),$bad_chars)
13 * Testing strcspn() : with different strings as str argument and default start and len args
16 echo "*** Testing strcspn() : with different str and default start and len args ***\n";
49 //calling strcspn() with default arguments
50 var_dump( strcspn($str,$mask) );
56 *** Testing strcspn() : with different str and default start and len args ***
H A Dstrcspn_variation5.phpt2 Test strcspn() function : usage variations - with heredoc strings with default start and len args
5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strcspn(substr($s,$start,$len),$bad_chars)
13 * Testing strcspn() : with different heredoc strings as str argument
16 echo "*** Testing strcspn() : with heredoc strings ***\n";
70 var_dump( strcspn($str,$mask) ); // with default start and len values
76 *** Testing strcspn() : with heredoc strings ***
H A Dstrcspn_variation6.phpt2 Test strcspn() function : usage variations - with heredoc strings, varying mask & default start and…
5 /* Prototype : proto int strcspn(string str, string mask [,int start [,int len]])
7 … If start or/and length is provided works like strcspn(substr($s,$start,$len),$bad_chars)
13 * Testing strcspn() : with heredoc string, varying mask and default start and len arguments
16 echo "*** Testing strcspn() : with different mask strings ***\n";
84 var_dump( strcspn($str,$mask) ); // with default start and len value
92 *** Testing strcspn() : with different mask strings ***
H A Dstrcspn_variation10.phpt2 Test strcspn() function : usage variations - with varying mask & default start and len args
5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strcspn(substr($s,$start,$len),$bad_chars)
13 * Testing strcspn() : with varying mask and default start and len arguments
16 echo "*** Testing strcspn() : with different mask strings and default start and len arguments ***\n…
59 var_dump( strcspn($str,$mask) );
67 *** Testing strcspn() : with different mask strings and default start and len arguments ***
H A Dstrcspn_variation7.phpt2 Test strcspn() function : usage variations - with heredoc strings, varying start and default len ar…
5 /* Prototype : proto int strcspn(string str, string mask [, int start [,int len]])
7 … If start or/and length is provided works like strcspn(substr($s,$start,$len),$bad_chars)
13 * Testing strcspn() : with heredoc string, varying start and default len arguments
16 echo "*** Testing strcspn() : with different start values ***\n";
98 var_dump( strcspn($str,$mask,$start) ); // with default len value
107 *** Testing strcspn() : with different start values ***
H A Dstrcspn_variation11.phpt2 Test strcspn() function : usage variations - with varying start and default len args
5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strcspn(substr($s,$start,$len),$bad_chars)
13 * Testing strcspn() : with varying start and default len arguments
16 echo "*** Testing strcspn() : with different start and default len values ***\n";
72 var_dump( strcspn($str,$mask,$start) );
81 *** Testing strcspn() : with different start and default len values ***
H A Dbug40754.phpt12 var_dump(strcspn("abcde", "abc", $v, $v));
H A Dstrcspn_variation8.phpt2 Test strcspn() function : usage variations - with heredoc strings, varying start and len args
5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strcspn(substr($s,$start,$len),$bad_chars)
13 * Testing strcspn() : with heredoc string, varying start and len arguments
16 echo "*** Testing strcspn() : with different start and len values ***\n";
103 var_dump( strcspn($str,$mask,$start,$len) );
113 *** Testing strcspn() : with different start and len values ***
H A Dstrcspn_variation12.phpt2 Test strcspn() function : usage variations - with varying start and len args
5 /* Prototype : proto int strcspn(string str, string mask [,int start [,int len]])
7 … If start or/and length is provided works like strcspn(substr($s,$start,$len),$bad_chars)
13 * Testing strcspn() : with varying start and len arguments
16 echo "*** Testing strcspn() : with different start and len values ***\n";
73 var_dump( strcspn($str,$mask,$start,$len) );
83 *** Testing strcspn() : with different start and len values ***
/PHP-7.4/ext/fileinfo/libmagic/
H A Dprint.c263 pp[strcspn(pp, "\n")] = '\0'; in file_fmttime()
H A Dsoftmagic.c671 str[strcspn(str, "\r\n")] = '\0'; in mprint()
871 p->s[strcspn(p->s, "\r\n")] = '\0'; in moffset()
/PHP-7.4/ext/standard/
H A Dphp_string.h24 PHP_FUNCTION(strcspn);
H A Dcrypt_sha256.c367 salt_len = MIN(strcspn(salt, "$"), SALT_LEN_MAX); in php_sha256_crypt_r()
H A Dcrypt_sha512.c401 salt_len = MIN(strcspn(salt, "$"), SALT_LEN_MAX); in php_sha512_crypt_r()
H A Dbasic_functions.c2777 PHP_FE(strcspn, arginfo_strcspn)
H A Dstring.c341 PHP_FUNCTION(strcspn) in PHP_FUNCTION() argument

Completed in 66 milliseconds