Searched refs:str_split (Results 1 – 17 of 17) sorted by relevance
/PHP-8.0/ext/standard/tests/strings/ |
H A D | str_split_basic.phpt | 2 Test str_split() function : basic functionality 5 echo "*** Testing str_split() : basic functionality ***\n"; 11 // Calling str_split() with all possible arguments 13 var_dump( str_split($str,$split_length) ); 15 // Calling str_split() with default arguments 17 var_dump( str_split($str) ); 22 *** Testing str_split() : basic functionality ***
|
H A D | str_split_variation7.phpt | 2 Test str_split() function : usage variations - different integer values for 'split_length' with her… 6 …ing different integer values for 'split_length' and heredoc string as 'str' argument to str_split() 9 echo "*** Testing str_split() : different integer values for 'split_length' with heredoc 'str' ***\… 31 var_dump( str_split($str, $values[$count]) ); 38 *** Testing str_split() : different integer values for 'split_length' with heredoc 'str' *** 40 str_split(): Argument #2 ($length) must be greater than 0 105 str_split(): Argument #2 ($length) must be greater than 0 124 str_split(): Argument #2 ($length) must be greater than 0
|
H A D | str_split_variation6.phpt | 2 Test str_split() function : usage variations - different integer values for 'split_length' argument 6 * passing different integer values for 'split_length' argument to str_split() 9 echo "*** Testing str_split() : different integer values for 'split_length' ***\n"; 29 var_dump( str_split($str, $values[$count]) ); 36 *** Testing str_split() : different integer values for 'split_length' *** 38 str_split(): Argument #2 ($length) must be greater than 0 127 str_split(): Argument #2 ($length) must be greater than 0 146 str_split(): Argument #2 ($length) must be greater than 0
|
H A D | str_split_variation5.phpt | 2 Test str_split() function : usage variations - different heredoc strings as 'str' argument 6 * Passing different heredoc strings as 'str' argument to the str_split() 10 echo "*** Testing str_split() : heredoc strings as 'str' argument ***\n"; 41 This checks\t str_split()\nEscape\rchars 46 This is to check str_split 75 var_dump( str_split($str, $split_length) ); 82 *** 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 6 * passing different double quoted strings as 'str' argument to str_split() 10 echo "*** Testing str_split() : double quoted strings for 'str' ***\n"; 35 var_dump( str_split($values[$count], $split_length) ); 40 *** 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 6 * passing different single quoted strings as 'str' argument to str_split() 10 echo "*** Testing str_split() : single quoted strings for 'str' ***\n"; 34 var_dump( str_split($values[$count], $split_length) ); 39 *** Testing str_split() : single quoted strings for 'str' ***
|
/PHP-8.0/ext/phar/ |
H A D | makestub.php | 54 $s1split = str_split($s1, 2046); 55 $s3split = str_split($s3, 2046);
|
/PHP-8.0/ext/openssl/tests/ |
H A D | bug55646.phpt | 10 return implode(" ", str_split($unpacked[1],2));
|
H A D | bug77390.phpt | 93 $parts = str_split($data, (int) ceil(strlen($data) / 3));
|
/PHP-8.0/scripts/dev/ |
H A D | tidy.php | 106 foreach (str_split($matches[0]) as $char) {
|
/PHP-8.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-8.0/ext/soap/tests/ |
H A D | bug47021.phpt | 16 $chunks = str_split($body, $n);
|
/PHP-8.0/ext/standard/ |
H A D | basic_functions.stub.php | 682 function str_split(string $string, int $length = 1): array {} function
|
H A D | basic_functions_arginfo.h | 2511 ZEND_FUNCTION(str_split); 3148 ZEND_FE(str_split, arginfo_str_split)
|
H A D | string.c | 5795 PHP_FUNCTION(str_split) argument
|
Completed in 48 milliseconds