Searched refs:rtrim (Results 1 – 23 of 23) sorted by relevance
/PHP-7.2/ext/standard/tests/strings/ |
H A D | rtrim.phpt | 2 Testing rtrim() function 11 rtrim(); 12 rtrim("", " ", 1); 17 var_dump ( rtrim("rtrim test \t\0 ") ); /* without second Argument */ 61 string(10) "rtrim test" 62 string(13) "rtrim test " 65 string(10) "rtrim test" 66 string(11) "rtrim test " 67 string(10) "rtrim test" 68 string(10) "rtrim test" [all …]
|
H A D | rtrim_error.phpt | 2 Test rtrim() function : error conditions 12 echo "*** Testing rtrim() : error conditions ***\n"; 15 var_dump( rtrim() ); 19 var_dump( rtrim("Hello World", "Heo", $extra_arg) ); 24 var_dump(rtrim($hello, "..a")); 25 var_dump(rtrim($hello, "a..")); 26 var_dump(rtrim($hello, "z..a")); 27 var_dump(rtrim($hello, "a..b..c")); 32 *** Testing rtrim() : error conditions *** 34 -- Testing rtrim() function with no arguments -- [all …]
|
H A D | rtrim_basic.phpt | 2 Test rtrim() function : basic functionality 6 /* Prototype : string rtrim ( string $str [, string $charlist ] ) 11 echo "*** Testing rtrim() : basic functionality ***\n"; 21 var_dump(rtrim($text)); 24 var_dump(rtrim($hello, "=!")); 27 var_dump(rtrim($hello, "!dlWro=")); 30 var_dump(rtrim($alpha, "A..Z")); 33 var_dump(rtrim($binary, "\x00..\x1F")); 38 *** Testing rtrim() : basic functionality ***
|
H A D | rtrim_variation1.phpt | 2 Test rtrim() function : usage variations - test values for $str argument 6 /* Prototype : string rtrim ( string $str [, string $charlist ] ) 11 echo "*** Testing rtrim() function: with unexpected inputs for 'str' argument ***\n"; 71 // loop through with each element of the $inputs array to test rtrim() function 76 var_dump( rtrim($input, " !-") ); 85 *** Testing rtrim() function: with unexpected inputs for 'str' argument *** 106 Warning: rtrim() expects parameter 1 to be string, array given in %s on line %d 110 Warning: rtrim() expects parameter 1 to be string, array given in %s on line %d 114 Warning: rtrim() expects parameter 1 to be string, array given in %s on line %d 132 Warning: rtrim() expects parameter 1 to be string, resource given in %s on line %d
|
H A D | rtrim_variation2.phpt | 2 Test rtrim() function : usage variations - test values for $charlist argument 6 /* Prototype : string rtrim ( string $str [, string $charlist ] ) 11 echo "*** Testing rtrim() function: with unexpected inputs for 'charlist' argument ***\n"; 71 // loop through with each element of the $inputs array to test rtrim() function 76 var_dump( rtrim("!---Hello World---!", $charlist) ); 85 *** Testing rtrim() function: with unexpected inputs for 'charlist' argument *** 106 Warning: rtrim() expects parameter 2 to be string, array given in %s on line %d 110 Warning: rtrim() expects parameter 2 to be string, array given in %s on line %d 114 Warning: rtrim() expects parameter 2 to be string, array given in %s on line %d 132 Warning: rtrim() expects parameter 2 to be string, resource given in %s on line %d
|
H A D | trim.phpt | 2 trim(), rtrim() and ltrim() functions 9 'ABC' === rtrim('ABC') 12 " \\0\\t\\nABC" === rtrim(" \\0\\t\\nABC \\0\\t\\n") 15 " \\0\\t\\nABC \\0\\t\\n" === rtrim(" \\0\\t\\nABC \\0\\t\\n",'')
|
/PHP-7.2/scripts/dev/generate-phpt/src/ |
H A D | gtCodeSnippet.php | 26 $array[] = rtrim($l); 48 $array[] = rtrim($t);
|
/PHP-7.2/ext/openssl/tests/ |
H A D | openssl_decrypt_basic.phpt | 26 var_dump(rtrim($output));
|
/PHP-7.2/sapi/cgi/tests/ |
H A D | 011.phpt | 20 echo rtrim($script) . "\n";
|
/PHP-7.2/ext/standard/ |
H A D | php_string.h | 31 PHP_FUNCTION(rtrim);
|
H A D | basic_functions.c | 2805 PHP_FE(rtrim, arginfo_rtrim) 2832 PHP_FALIAS(chop, rtrim, arginfo_rtrim)
|
H A D | string.c | 926 PHP_FUNCTION(rtrim) in PHP_FUNCTION() argument
|
/PHP-7.2/scripts/dev/ |
H A D | check_parameters.php | 169 $name = rtrim($name, ')');
|
H A D | generate-phpt.phar | 306 $array[] = rtrim($l); 328 $array[] = rtrim($t);
|
/PHP-7.2/sapi/fpm/tests/ |
H A D | status.inc | 104 $pattern = rtrim($pattern, $rowPattern[strlen($rowPattern) - 1]);
|
H A D | logtool.inc | 175 $out = rtrim($line); 324 $line = rtrim($line);
|
H A D | tester.inc | 911 $fileName = rtrim(basename($this->fileName), '.'); 923 $fileName = rtrim($this->fileName, '.');
|
/PHP-7.2/ext/intl/tests/ |
H A D | locale_parse_locale.phpt | 81 $res_str = rtrim($res_str);
|
H A D | locale_parse_locale2.phpt | 82 $res_str = rtrim($res_str);
|
/PHP-7.2/ext/standard/html_tables/ |
H A D | html_table_gen.php | 334 $map[] = array($matches[1], $matches[2], rtrim($matches[3]));
|
/PHP-7.2/ |
H A D | .gitattributes | 74 /ext/standard/tests/strings/rtrim.phpt -crlf
|
H A D | run-tests.php | 1248 echo rtrim($block); 2215 $info = ' XFAIL REASON: ' . rtrim($section_text['XFAIL']);
|
/PHP-7.2/ext/sqlite3/libsqlite/ |
H A D | sqlite3.c | 114923 FUNCTION(rtrim, 1, 2, 0, trimFunc ), 114924 FUNCTION(rtrim, 2, 2, 0, trimFunc ),
|
Completed in 586 milliseconds