ItSolutionStuff.com

How to Remove Last 2, 3, 4, 5, 7 Characters of a String in PHP?

By Hardik Savani • May 14, 2024
PHP

Hey,

This is a short guide on how to remove last two characters of a string in php. This article will give you a simple example of php remove last 4 characters of string. I’m going to show you about php remove last 3 characters of string. you will learn php delete last 5 characters of string.

In this example, we will use substr() function to remove last 2, 3, 4, 5 and 7 characters from string in php. so, let's see the following example code:

index.php

<?php

$string = "Welcome to ItSolutionstuff.com";

$last2Char = substr($string, 0, -2);

var_dump($last2Char);

$last3Char = substr($string, 0, -3);

var_dump($last3Char);

$last4Char = substr($string, 0, -4);

var_dump($last4Char);

$last5Char = substr($string, 0, -5);

var_dump($last5Char);

$last7Char = substr($string, 0, -7);

var_dump($last7Char);

?>

Output:

string(28) "Welcome to ItSolutionstuff.c"

string(27) "Welcome to ItSolutionstuff."

string(26) "Welcome to ItSolutionstuff"

string(25) "Welcome to ItSolutionstuf"

string(23) "Welcome to ItSolutionst"

I hope it can help you...

Tags: PHP
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

šŸ“ŗ Subscribe on YouTube

We Are Recommending You

ā˜…

PHP String Count Specific Character Example

Read Now →
ā˜…

How to Upgrade PHP Version from 8.1 to 8.2 in Ubuntu?

Read Now →
ā˜…

PHP Get First 2, 3, 4, 5, 10 Character from String Example

Read Now →
ā˜…

How to Get First and Last Character from String in PHP?

Read Now →
ā˜…

How to Get Last Character from String in PHP?

Read Now →
ā˜…

How to Get First Character from String in PHP?

Read Now →
ā˜…

How to Remove Last Character from String in PHP?

Read Now →
ā˜…

How to Remove First Character from String in PHP?

Read Now →
ā˜…

PHP Remove First and Last Character from String Example

Read Now →
ā˜…

PHP Remove Whitespace from Beginning and End of String Example

Read Now →
ā˜…

How to Check Query Execution Time in PHP?

Read Now →
ā˜…

How to Remove Special Characters from String in PHP?

Read Now →
ā˜…

Ubuntu PHP bz2 Extension Install Commands Example

Read Now →
ā˜…

How to Get Difference Between Two Dates in PHP?

Read Now →
ā˜…

Dynamic Dependent Dropdown using VueJS and PHP

Read Now →