PHP removes the last character of the string with the use of substr () _php Tutorial

Source: Internet
Author: User
Used in today's project to remove the last character in a string
The original string 1,2,3,4,5,6,
Remove the last character "," and the end result is 1,2,3,4,5,6
The code is as follows:
Copy CodeThe code is as follows:
$str = "1,2,3,4,5,6,";
$newstr = substr ($str, 0,strlen ($STR)-1);
Echo $newstr;


Interpretation:
Using PHP's Substr () method,
Syntax: String substr (string string, int start, int [length]);
Parameter 1: the original string;
Parameter 2: The starting position of the cutting;
Parameter 3: Length of interception;

Use this as follows:
$newstr = substr ($str, 0,strlen ($STR)-1);
Intercept from the beginning, always intercept to the penultimate, so that the final "," removed.


The system comes with functions that can also achieve this effect, two methods:
1) substr ($str, 0,-1)
2) RTrim ($str, ",")

substr
Takes a partial string.
Syntax: String substr (string string, int start, int [length]);
return value: String
Function type: Data processing
Content Description
This function takes the string starting at the start of the string to take a length character. If start is negative, it is counted from the end of the string. If the omitted parameter length exists, but is a negative number, it is taken to the penultimate length character.
Usage examples
Copy CodeThe code is as follows:
echo substr ("abcdef", 1, 3); Returns "BCD"
echo substr ("ABCdef",-2); Back to "EF"
echo substr ("ABCdef",-3, 1); Return "D"
echo substr ("abcdef", 1,-1); Back to "BCDE"
?>


PHP RTrim () function

Definition and usage
The RTrim () function removes whitespace characters or other predefined characters starting at the end of the string. The same chop () function.

Grammar
parameters description
string
charlist

Optional. Specifies which characters are removed from the string.

  • "\ T"-ASCII 9, tab
  • "\ n"-ASCII 10, new line
  • "\x0b"-ASCII 11, vertical tab
  • "\ r"-ASCII 13, carriage return
  • "-ASCII 32, Space

Usage examples

http://www.bkjia.com/PHPjc/323054.html www.bkjia.com true http://www.bkjia.com/PHPjc/323054.html techarticle used today in the project, remove the last word in the string Fu Yuan string 1,2,3,4,5,6, remove the last character ",", the final result is 1,2,3,4,5,6 code as follows: Copy code code such as ...

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