string rtrim ( string $str [, string $charlist ] )
Usuwa białe znaki z końca ciągu. Listę usuwanych znaków można zobaczyć w opcjach funkcji ltrim().
Kompatybilność: PHP4, PHP5.
Listing
<?php
 
 $text = \"ttThese are a few words :) ...  \";
 $binary = \"x09Example stringx0A\";
 $hello  = \"Hello World\";
 var_dump($text, $binary, $hello);
 
 print \"n\";
 
 $trimmed = rtrim($text);
 var_dump($trimmed);
 
 $trimmed = rtrim($text, \" t.\");
 var_dump($trimmed);
 
 $trimmed = rtrim($hello, \"Hdle\");
 var_dump($trimmed);
 
 $clean = rtrim($binary, \"x00..x1F\");
 var_dump($clean);
 
 ?>
 
 //zwróci:
 
 string(32) \"        These are a few words :) ...  \"
 string(16) \"    Example string
 \"
 string(11) \"Hello World\"
 
 string(30) \"        These are a few words :) ...\"
 string(26) \"        These are a few words :)\"
 string(9) \"Hello Wor\"
 string(15) \"    Example string\"
Ranga: Administrator serwisu Punktów: 0



 
  
				

 
                             
 


 
                        
 
		 
	