PHP to remove the string hollow characters of common methods Summary, PHP string Hollow Summary _php Tutorial

Source: Internet
Author: User
Tags rtrim

PHP to remove the string hollow characters of common methods Summary, PHP string Hollow Summary


This paper summarizes the common methods of PHP to remove the characters of the string. Share to everyone for your reference. The specific analysis is as follows:

PHP contains four functions that can be used to remove a string space:

Trim () – Remove null characters at both ends of the string
LTrim () – Remove null characters from the front of the string
RTrim () – Remove null characters at the end of a string
Chop () – Same as RTrim ().

The code is as follows:

<?php$text = "\ t \ t jb51.net!\t \ t"; $leftTrimmed = LTrim ($text); $rightTrimmed = RTrim ($text); $bothTrimmed = Trim ($text );p rint ("lefttrimmed = ($leftTrimmed) \ n");p rint ("righttrimmed = ($rightTrimmed) \ n");p rint ("bothtrimmed = ($ bothtrimmed) \ n ");? >

Output Result:

lefttrimmed = (jb51.net!) righttrimmed = (jb51.net!) bothtrimmed = (jb51.net!)

I hope this article is helpful to everyone's PHP programming.

http://www.bkjia.com/PHPjc/969499.html www.bkjia.com true http://www.bkjia.com/PHPjc/969499.html techarticle PHP Removal of String hollow characters of common methods Summary, PHP string Hollow Summary This paper summarizes the common methods of PHP to remove the character of the string. Share to everyone for your reference. ...

  • 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.