Php Getting Started Tutorial: php rtrim () instance tutorial

Source: Internet
Author: User

Php Getting Started Tutorial: php rtrim () instance tutorial

Definition and usage
The rtrim () function will remove spaces or other pre-determined properties from a string on the right.

Syntax

Rtrim (string, charlist)
  

Parameter description
String required. Specified string check
Charlist is optional. The specified character to delete the string. If omitted, all the following characters are deleted:
"0"-null
"T" type-label
"& Ntilde;"-new production line
"X0B"-vertical label
"R" start-press enter
""-Ordinary white space
 


Example 1

<Html> <body> <? Php $ str = "Hello World! "; Echo" Without rtrim: ". $ str; echo" <br/> "; echo" With rtrim: ". rtrim ($ str);?> <Body> 
 
Output result.
 
Without rtrim: Hello World! With rtrim: Hello World!
 
      

If you select "View Source File" in the browser window, you will see the following HTML:

 

<Html> <body> Without rtrim: Hello World! <Br/> With rtrim: Hello World! </Body> 
 
Instance 2.
 
<? Php $ str = "Hello World! Rn "; echo" Without rtrim: ". $ str; echo" <br/> "; echo" With rtrim: ". rtrim ($ str);?>
 
Output.
 
Without rtrim: Hello World! With rtrim: Hello World!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.