/PHP-7.0/ext/standard/tests/strings/ |
H A D | str_split_error.phpt | 2 Test str_split() function : error conditions 5 /* Prototype : array str_split(string $str [, int $split_length]) 13 echo "*** Testing str_split() : error conditions ***\n"; 16 echo "-- Testing str_split() function with Zero arguments --\n"; 17 var_dump( str_split() ); 19 //Test str_split with one more than the expected number of arguments 24 var_dump( str_split( $str, $split_length, $extra_arg) ); 29 *** Testing str_split() : error conditions *** 30 -- Testing str_split() function with Zero arguments -- 32 Warning: str_split() expects at least 1 parameter, 0 given in %s on line %d [all …]
|
H A D | str_split_variation2_64bit.phpt | 2 Test str_split() function : usage variations - unexpected values for 'split_length' argument 9 /* Prototype : array str_split(string $str [, int $split_length]) 17 echo "*** Testing str_split() : unexpected values for 'split_length' ***\n"; 89 var_dump( str_split($str, $values[$count]) ); 98 *** Testing str_split() : unexpected values for 'split_length' *** 127 Warning: str_split() expects parameter 2 to be integer, array given in %s on line %d 131 Warning: str_split() expects parameter 2 to be integer, array given in %s on line %d 135 Warning: str_split() expects parameter 2 to be integer, array given in %s on line %d 139 Warning: str_split() expects parameter 2 to be integer, array given in %s on line %d 143 Warning: str_split() expects parameter 2 to be integer, array given in %s on line %d [all …]
|
H A D | str_split_variation2.phpt | 2 Test str_split() function : usage variations - unexpected values for 'split_length' argument 9 /* Prototype : array str_split(string $str [, int $split_length]) 17 echo "*** Testing str_split() : unexpected values for 'split_length' ***\n"; 89 var_dump( str_split($str, $values[$count]) ); 98 *** Testing str_split() : unexpected values for 'split_length' *** 114 Warning: str_split() expects parameter 2 to be integer, float given in %s on line %d 126 Warning: str_split() expects parameter 2 to be integer, array given in %sstr_split_variation2.php o… 130 Warning: str_split() expects parameter 2 to be integer, array given in %sstr_split_variation2.php o… 134 Warning: str_split() expects parameter 2 to be integer, array given in %sstr_split_variation2.php o… 138 Warning: str_split() expects parameter 2 to be integer, array given in %sstr_split_variation2.php o… [all …]
|
H A D | str_split_basic.phpt | 2 Test str_split() function : basic functionality 5 /* Prototype : array str_split(string $str [, int $split_length]) 13 echo "*** Testing str_split() : basic functionality ***\n"; 19 // Calling str_split() with all possible arguments 21 var_dump( str_split($str,$split_length) ); 23 // Calling str_split() with default arguments 25 var_dump( str_split($str) ); 30 *** Testing str_split() : basic functionality ***
|
H A D | str_split_variation1.phpt | 2 Test str_split() function : usage variations - unexpected values for 'str' argument 5 /* Prototype : array str_split(string $str [, int $split_length]) 13 echo "*** Testing str_split() : unexpected values for 'str' ***\n"; 87 var_dump( str_split($values[$count], $split_length) ); 96 *** Testing str_split() : unexpected values for 'str' *** 162 Warning: str_split() expects parameter 1 to be string, array given in %s on line %d 166 Warning: str_split() expects parameter 1 to be string, array given in %s on line %d 170 Warning: str_split() expects parameter 1 to be string, array given in %s on line %d 174 Warning: str_split() expects parameter 1 to be string, array given in %s on line %d 178 Warning: str_split() expects parameter 1 to be string, array given in %s on line %d [all …]
|
H A D | str_split_variation6.phpt | 2 Test str_split() function : usage variations - different integer values for 'split_length' argument 9 /* Prototype : array str_split(string $str [, int $split_length]) 18 * passing different integer values for 'split_length' argument to str_split() 21 echo "*** Testing str_split() : different intger values for 'split_length' ***\n"; 40 var_dump( str_split($str, $values[$count]) ); 45 *** Testing str_split() : different intger values for 'split_length' *** 48 Warning: str_split(): The length of each segment must be greater than zero in %s on line %d 139 Warning: str_split(): The length of each segment must be greater than zero in %s on line %d 160 Warning: str_split() expects parameter 2 to be integer, float given in %s line %d 164 Warning: str_split(): The length of each segment must be greater than zero in %s on line %d
|
H A D | str_split_variation7.phpt | 2 Test str_split() function : usage variations - different integer values for 'split_length' with her… 9 /* Prototype : array str_split(string $str [, int $split_length]) 18 …ing different integer values for 'split_length' and heredoc string as 'str' argument to str_split() 21 echo "*** Testing str_split() : different intger values for 'split_length' with heredoc 'str' ***\n… 42 var_dump( str_split($str, $values[$count]) ); 47 *** Testing str_split() : different intger values for 'split_length' with heredoc 'str' *** 50 Warning: str_split(): The length of each segment must be greater than zero in %s on line %d 117 Warning: str_split(): The length of each segment must be greater than zero in %s on line %d 138 Warning: str_split() expects parameter 2 to be integer, float given in %s on line %d 142 Warning: str_split(): The length of each segment must be greater than zero in %s on line %d
|
H A D | str_split_variation7_64bit.phpt | 2 Test str_split() function : usage variations - different integer values for 'split_length' with her… 9 /* Prototype : array str_split(string $str [, int $split_length]) 18 …ing different integer values for 'split_length' and heredoc string as 'str' argument to str_split() 21 echo "*** Testing str_split() : different intger values for 'split_length' with heredoc 'str' ***\n… 42 var_dump( str_split($str, $values[$count]) ); 47 *** Testing str_split() : different intger values for 'split_length' with heredoc 'str' *** 50 Warning: str_split(): The length of each segment must be greater than zero in %s on line %d 117 Warning: str_split(): The length of each segment must be greater than zero in %s on line %d 143 Warning: str_split(): The length of each segment must be greater than zero in %s on line %d
|
H A D | str_split_variation6_64bit.phpt | 2 Test str_split() function : usage variations - different integer values for 'split_length' argument 9 /* Prototype : array str_split(string $str [, int $split_length]) 18 * passing different integer values for 'split_length' argument to str_split() 21 echo "*** Testing str_split() : different intger values for 'split_length' ***\n"; 40 var_dump( str_split($str, $values[$count]) ); 45 *** Testing str_split() : different intger values for 'split_length' *** 48 Warning: str_split(): The length of each segment must be greater than zero in %s on line %d 139 Warning: str_split(): The length of each segment must be greater than zero in %s on line %d 165 Warning: str_split(): The length of each segment must be greater than zero in %s on line %d
|
H A D | str_split_variation5.phpt | 2 Test str_split() function : usage variations - different heredoc strings as 'str' argument 5 /* Prototype : array str_split(string $str [, int $split_length] ) 14 * Passing different heredoc strings as 'str' argument to the str_split() 18 echo "*** Testing str_split() : heredoc strings as 'str' argument ***\n"; 49 This checks\t str_split()\nEscape\rchars 54 This is to check str_split 83 var_dump( str_split($str, $split_length) ); 90 *** Testing str_split() : heredoc strings as 'str' argument ***
|
H A D | str_split_variation3.phpt | 2 Test str_split() function : usage variations - different double quoted strings for 'str' argument 5 /* Prototype : array str_split(string $str [, int $split_length]) 14 * passing different double quoted strings as 'str' argument to str_split() 18 echo "*** Testing str_split() : double quoted strings for 'str' ***\n"; 43 var_dump( str_split($values[$count], $split_length) ); 48 *** Testing str_split() : double quoted strings for 'str' ***
|
H A D | str_split_variation4.phpt | 2 Test str_split() function : usage variations - different single quoted strings for 'str' argument 5 /* Prototype : array str_split(string $str [, int $split_length]) 14 * passing different single quoted strings as 'str' argument to str_split() 18 echo "*** Testing str_split() : single quoted strings for 'str' ***\n"; 42 var_dump( str_split($values[$count], $split_length) ); 47 *** Testing str_split() : single quoted strings for 'str' ***
|
/PHP-7.0/ext/phar/ |
H A D | makestub.php | 56 $s1split = str_split($s1, 2046); 57 $s3split = str_split($s3, 2046);
|
/PHP-7.0/ext/openssl/tests/ |
H A D | bug55646.phpt | 9 function stringAsHex($string){$unpacked = unpack("H*", $string);return implode(" ", str_split($unpa…
|
/PHP-7.0/ext/phar/tests/tar/files/ |
H A D | tarmaker.php.inc | 101 $checkheader = array_merge(str_split($block), str_split($blockend));
|
H A D | corrupt_tarmaker.php.inc | 108 $checkheader = array_merge(str_split($block), str_split($blockend));
|
H A D | make.dangerous.tar.php.inc | 102 $checkheader = array_merge(str_split($block), str_split($blockend));
|
/PHP-7.0/ext/standard/ |
H A D | php_string.h | 93 PHP_FUNCTION(str_split);
|
H A D | string.c | 5535 PHP_FUNCTION(str_split) argument
|
H A D | basic_functions.c | 2752 PHP_FE(str_split, arginfo_str_split)
|