Home
last modified time | relevance | path

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

/PHP-7.4/ext/standard/tests/strings/
H A Dstrspn_basic.phpt2 Test strspn() function : basic functionality
5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
13 * Testing strspn() : basic functionality
16 echo "*** Testing strspn() : basic functionality ***\n";
25 // Calling strspn() with all possible arguments
26 var_dump( strspn($str, $mask, $start, $len) );
28 // Calling strspn() with three arguments and default len argument
29 var_dump( strspn($str, $mask, $start) );
31 // Calling strspn() with default arguments
32 var_dump( strspn($str, $mask) );
[all …]
H A Dstrspn.phpt2 Test strspn() behavior
9 var_dump(strspn($a,$b));
10 var_dump(strspn($a,$b,2));
11 var_dump(strspn($a,$b,2,3));
H A Dstrspn_variation9.phpt2 Test strspn() function : usage variations - different strings with default start and len args
5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars)
13 * Testing strspn() : with different strings as str argument and default start and len args
16 echo "*** Testing strspn() : with different str and default start and len args ***\n";
49 //calling strspn() with default arguments
50 var_dump( strspn($str,$mask) );
56 *** Testing strspn() : with different str and default start and len args ***
H A Dstrspn_variation5.phpt2 Test strspn() function : usage variations - with heredoc strings with default start and len args
5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars)
13 * Testing strspn() : with different heredoc strings as str argument
16 echo "*** Testing strspn() : with heredoc strings ***\n";
70 var_dump( strspn($str,$mask) ); // with default start and len values
76 *** Testing strspn() : with heredoc strings ***
H A Dstrspn_variation6.phpt2 Test strspn() function : usage variations - with heredoc strings, varying mask & default start and …
5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars)
13 * Testing strspn() : with heredoc string, varying mask and default start and len arguments
16 echo "*** Testing strspn() : with different mask strings ***\n";
86 var_dump( strspn($str,$mask) ); // with default start and len value
94 *** Testing strspn() : with different mask strings ***
H A Dstrspn_variation10.phpt2 Test strspn() function : usage variations - with varying mask & default start and len args
5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars)
13 * Testing strspn() : with varying mask and default start and len arguments
16 echo "*** Testing strspn() : with different mask strings and default start and len arguments ***\n";
61 var_dump( strspn($str,$mask) );
69 *** Testing strspn() : with different mask strings and default start and len arguments ***
H A Dstrspn_variation7.phpt2 Test strspn() function : usage variations - with heredoc strings, varying start and default len args
5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars)
13 * Testing strspn() : with heredoc string, varying start and default len arguments
16 echo "*** Testing strspn() : with different start values ***\n";
98 var_dump( strspn($str,$mask,$start) ); // with default len value
107 *** Testing strspn() : with different start values ***
H A Dstrspn_variation11.phpt2 Test strspn() function : usage variations - with varying start and default len args
5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars)
13 * Testing strspn() : with varying start and default len arguments
16 echo "*** Testing strspn() : with different start and default len values ***\n";
72 var_dump( strspn($str,$mask,$start) );
81 *** Testing strspn() : with different start and default len values ***
H A Dbug40754.phpt11 var_dump(strspn("abcde", "abc", $v, $v));
H A Dstrspn_variation8.phpt2 Test strspn() function : usage variations - with heredoc strings, varying start and len args
5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars)
13 * Testing strspn() : with heredoc string, varying start and len arguments
16 echo "*** Testing strspn() : with different start and len values ***\n";
105 var_dump( strspn($str,$mask,$start,$len) );
115 *** Testing strspn() : with different start and len values ***
H A Dstrspn_variation12.phpt2 Test strspn() function : usage variations - with varying start and len args
5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars)
13 * Testing strspn() : with varying start and len arguments
16 echo "*** Testing strspn() : with different start and len values ***\n";
73 var_dump( strspn($str,$mask,$start,$len) );
83 *** Testing strspn() : with different start and len values ***
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_unix.c166 if (strlen(c->listen_owner) == strspn(c->listen_owner, "0123456789")) { in fpm_unix_resolve_socket_premissions()
183 if (strlen(c->listen_group) == strspn(c->listen_group, "0123456789")) { in fpm_unix_resolve_socket_premissions()
270 if (strlen(wp->config->user) == strspn(wp->config->user, "0123456789")) { in fpm_unix_conf_wp()
290 if (strlen(wp->config->group) == strspn(wp->config->group, "0123456789")) { in fpm_unix_conf_wp()
H A Dfpm_sockets.c271 if (strlen(address) == strspn(address, "0123456789")) { in fpm_sockets_domain_from_address()
332 } else if (strlen(dup_address) == strspn(dup_address, "0123456789")) { /* this is port */ in fpm_socket_af_inet_listening_socket()
/PHP-7.4/ext/standard/
H A Dphp_string.h23 PHP_FUNCTION(strspn);
H A Dvar_unserializer.re1063 …len3 = strspn(str, "0123456789_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\177\200\201\20…
H A Dbasic_functions.c2776 PHP_FE(strspn, arginfo_strspn)
H A Dstring.c333 PHP_FUNCTION(strspn) in PHP_FUNCTION() argument
/PHP-7.4/Zend/
H A Dzend_execute_API.c962 …if (!key && strspn(ZSTR_VAL(name), "0123456789_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXY… in zend_lookup_class_ex()
/PHP-7.4/ext/pgsql/
H A Dpgsql.c843 tmp_len = strspn(str, "\\"); in php_pgsql_PQescapeInternal()

Completed in 79 milliseconds