Home  >  Article  >  Backend Development  >  How to remove the last few characters from a string in php

How to remove the last few characters from a string in php

王林
王林Original
2020-08-05 12:01:196057browse

How to remove the last few characters in a string in php: You can use the substr() function to achieve this. The substr() function can return the extracted part of the string, return FALSE if it fails, or return an empty string, such as: [substr("Hello world",0,10)].

How to remove the last few characters from a string in php

The substr() function returns the extracted portion of the string, FALSE if failed, or an empty string.

(Recommended tutorial: php graphic tutorial)

Syntax:

substr(string,start,length)

Note: If the start parameter is a negative number and length is less than or equal to start, Then length is 0.

Parameters:

  • string Required. Specifies a part of the string to be returned.​

  • #start Required. Specifies where in the string to begin.

  • #length Optional. Specifies the length of the string to be returned. The default is until the end of the string.

(Video tutorial recommendation: php video tutorial)

Code sample:

<?php
echo substr("Hello world",0,10)."<br>";
echo substr("Hello world",1,8)."<br>";
echo substr("Hello world",0,5)."<br>";
echo substr("Hello world",6,6)."<br>";
echo substr("Hello world",0,-1)."<br>";
echo substr("Hello world",-10,-2)."<br>";
echo substr("Hello world",0,-6)."<br>";
echo substr("Hello world",-2-3)."<br>";
?>

The above is the detailed content of How to remove the last few characters from a string in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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