Searched refs:strcspn (Results 1 – 18 of 18) sorted by relevance
/PHP-8.0/ext/standard/tests/strings/ |
H A D | strcspn_basic.phpt | 2 Test strcspn() function : basic functionality 6 * Testing strcspn() : basic functionality 9 echo "*** Testing strcspn() : basic functionality ***\n"; 18 // Calling strcspn() with all possible arguments 19 var_dump( strcspn($str, $mask, $start, $len) ); 21 // Calling strcspn() with three arguments 22 var_dump( strcspn($str, $mask, $start) ); 24 // Calling strcspn() with default arguments 25 var_dump( strcspn($str, $mask) ); 30 *** Testing strcspn() : basic functionality ***
|
H A D | bug39032.phpt | 2 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 D | strcspn.phpt | 2 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 D | strcspn_variation9.phpt | 2 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 D | strcspn_variation5.phpt | 2 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 D | strcspn_variation6.phpt | 2 Test strcspn() function : usage variations - with heredoc strings, varying mask & default start and… 6 * Testing strcspn() : with heredoc string, varying mask and default start and len arguments 9 echo "*** Testing strcspn() : with different mask strings ***\n"; 77 var_dump( strcspn($str,$mask) ); // with default start and len value 85 *** Testing strcspn() : with different mask strings ***
|
H A D | strcspn_variation10.phpt | 2 Test strcspn() function : usage variations - with varying mask & default start and len args 6 * Testing strcspn() : with varying mask and default start and len arguments 9 echo "*** Testing strcspn() : with different mask strings and default start and len arguments ***\n… 52 var_dump( strcspn($str,$mask) ); 60 *** Testing strcspn() : with different mask strings and default start and len arguments ***
|
H A D | strcspn_variation11.phpt | 2 Test strcspn() function : usage variations - with varying start and default len args 6 * Testing strcspn() : with varying start and default len arguments 9 echo "*** Testing strcspn() : with different start and default len values ***\n"; 65 var_dump( strcspn($str,$mask,$start) ); 74 *** Testing strcspn() : with different start and default len values ***
|
H A D | bug40754.phpt | 11 var_dump(strcspn("abcde", "abc", $v, $v));
|
H A D | strcspn_variation12.phpt | 2 Test strcspn() function : usage variations - with varying start and len args 6 * Testing strcspn() : with varying start and len arguments 9 echo "*** Testing strcspn() : with different start and len values ***\n"; 66 var_dump( strcspn($str,$mask,$start,$len) ); 76 *** Testing strcspn() : with different start and len values ***
|
/PHP-8.0/ext/fileinfo/libmagic/ |
H A D | print.c | 271 pp[strcspn(pp, "\n")] = '\0'; in file_fmttime()
|
H A D | softmagic.c | 679 str[strcspn(str, "\r\n")] = '\0'; in mprint() 890 p->s[strcspn(p->s, "\r\n")] = '\0'; in moffset()
|
/PHP-8.0/ext/standard/ |
H A D | crypt_sha256.c | 371 salt_len = MIN(strcspn(salt, "$"), SALT_LEN_MAX); in php_sha256_crypt_r()
|
H A D | crypt_sha512.c | 405 salt_len = MIN(strcspn(salt, "$"), SALT_LEN_MAX); in php_sha512_crypt_r()
|
H A D | basic_functions.stub.php | 543 function strcspn(string $string, string $characters, int $offset = 0, ?int $length = null): int {} function
|
H A D | basic_functions_arginfo.h | 2449 ZEND_FUNCTION(strcspn); 3083 ZEND_FE(strcspn, arginfo_strcspn)
|
H A D | string.c | 312 PHP_FUNCTION(strcspn) in PHP_FUNCTION() argument
|
/PHP-8.0/ext/opcache/jit/dynasm/ |
H A D | minilua.c | 750 size_t len=strcspn(source,"\n\r");
|
Completed in 83 milliseconds