How to remove the last character in php substr()

青灯夜游
Release: 2023-03-14 10:42:01
Original
2580 people have browsed it

In PHP, if you want to use the substr() function to remove the last character of a string, you only need to set the second parameter of the function to 0, and the third parameter is the length of the string minus one, that is Yes; the syntax is "substr($string,0,strlen($string)-1)".

How to remove the last character in php substr()

The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

php substr() Remove the last character

The substr() function can intercept characters of a certain length from the specified position of the string and return it. The syntax format is as follows:

substr($string, $start , $length)
Copy after login
  • $string: The string that needs to be intercepted, which contains at least one character;

  • $start: The starting position of the intercepted string;

  • $length: Optional parameter, indicating the length of the intercepted string.

If you want to use the substr() function to remove the last character of the string, you only need to set the second parameter of the function $start to 0. The third parameter $length is the length of the string minus one.

Implementation code:

<?php
header("Content-type:text/html;charset=utf-8");
$str = &#39;123.456abc&#39;;
$nstr=substr($str,0,strlen($str)-1);
echo $nstr;
?>
Copy after login

How to remove the last character in php substr()

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to remove the last character in php substr(). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!