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)".
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)
$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 = '123.456abc'; $nstr=substr($str,0,strlen($str)-1); echo $nstr; ?>
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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

WebStorm Mac version
Useful JavaScript development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
