Searched refs:ucwords (Results 1 – 15 of 15) sorted by relevance
/PHP-8.0/ext/standard/tests/strings/ |
H A D | ucwords_variation5.phpt | 2 Test ucwords() function : usage variations - custom delimiters 5 echo "*** Testing ucwords() : usage variations ***\n"; 7 var_dump(ucwords('testing-dashed-words', '-')); 8 var_dump(ucwords('test(braced)words', '()')); 9 var_dump(ucwords('testing empty delimiters', '')); 10 var_dump(ucwords('testing ranges', 'a..e')); 15 *** Testing ucwords() : usage variations ***
|
H A D | ucwords_variation4.phpt | 14 "testing ucwords", 18 "testing function(ucwords)", 19 "(testing ( function (ucwords) )a )test", 24 "\"testing\",ucwords,\"test\"", 33 "testing\rucwords testing ucwords", 34 "testing\\rucwords testing ucwords", 37 "\ntesting\nucwords\n testing \n ucwords", 55 var_dump( ucwords($str_array[$index]) ); 62 *** Testing ucwords() : usage variations *** 68 string(25) "Testing Function(ucwords)" [all …]
|
H A D | ucwords_variation3.phpt | 9 echo "*** Testing ucwords() : usage variations ***\n"; 14 'testing ucwords', 18 'testing function(ucwords)', 19 '(testing ( function (ucwords) )a )test', 30 'testing\rucwords testing ucwords', 32 '\ntesting\nucwords\n testing \n ucwords', 38 '/test/r\test\ucwords\t\y\y\u\3 \yy\ /uu/', 48 var_dump( ucwords($str_array[$index]) ); 55 *** Testing ucwords() : usage variations *** 61 string(25) "Testing Function(ucwords)" [all …]
|
H A D | ucwords_basic.phpt | 2 Test ucwords() function : basic functionality 5 echo "*** Testing ucwords() : basic functionality ***\n"; 9 "testing ucwords", 10 'testing ucwords', 21 "testing ucwords", 22 'testing ucwords', 29 // loop through the $strings array to test ucwords on each element 33 var_dump( ucwords($str_array[$index]) ); 40 *** Testing ucwords() : basic functionality ***
|
H A D | ucwords_variation2.phpt | 2 Test ucwords() function : usage variations - heredoc strings 6 * test ucwords() with different string prepared using heredoc 9 echo "*** Testing ucwords() : usage variations ***\n"; 57 // loop through $heredoc_strings element and check the working on ucwords() 61 var_dump( ucwords($heredoc_strings[$index]) ); 68 *** Testing ucwords() : usage variations ***
|
/PHP-8.0/ext/xsl/tests/ |
H A D | xsltprocessor_registerPHPFunctions-array.phpt | 19 var_dump($proc->registerPHPFunctions(array('ucwords')));
|
H A D | xsltprocessor_registerPHPFunctions-string.phpt | 19 var_dump($proc->registerPHPFunctions('ucwords'));
|
H A D | xsltprocessor_registerPHPFunctions-array-notallowed.phpt | 25 Warning: XSLTProcessor::transformToXml(): Not allowed to call handler 'ucwords()' in %s on line %d
|
H A D | xsltprocessor_registerPHPFunctions-string-notallowed.phpt | 25 Warning: XSLTProcessor::transformToXml(): Not allowed to call handler 'ucwords()' in %s on line %d
|
H A D | xsltprocessor_registerPHPFunctions-null.phpt | 23 var_dump($proc->registerPHPFunctions('ucwords'));
|
H A D | xsltprocessor_registerPHPFunctions-string-multiple.phpt | 23 var_dump($proc->registerPHPFunctions('ucwords'));
|
H A D | xsltprocessor_registerPHPFunctions-array-multiple.phpt | 23 var_dump($proc->registerPHPFunctions(array('strpos', 'ucwords')));
|
/PHP-8.0/ext/standard/ |
H A D | basic_functions.stub.php | 620 function ucwords(string $string, string $separators = " \t\r\n\f\v"): string {} function
|
H A D | basic_functions_arginfo.h | 2484 ZEND_FUNCTION(ucwords); 3121 ZEND_FE(ucwords, arginfo_ucwords)
|
H A D | string.c | 2602 PHP_FUNCTION(ucwords) argument
|
Completed in 51 milliseconds