PHP Remove First and Last Character from String Example
Hello Folks,
This tutorial will give you an example of php remove first and last character from string. We will look at an example of how to remove first and last character from string in php. Here you will learn php remove first and last character from string example. In this article, we will implement a remove first and last character from string php.
we will use substr() php function to remove first and last character from string. i will give you very simple examples to delete first and last character from string in php.
Example 1: PHP Remove First and Last Character from String
index.php
<?php
/* Declare string variable */
$myString = "Welcome to ItSolutionStuff.com!";
/* Remove First and Last Character of string */
$newString = substr($myStr, 1, -1);
/* Echo resulted string */
echo $newString;
?>
Output:
elcome to ItSolutionStuff.com
Example 2: PHP Remove First Character from String
index.php
<?php
/* Declare string variable */
$myString = "Welcome to ItSolutionStuff.com!";
/* Remove First Character of string */
$newString = substr($myString, 1);
/* Echo resulted string */
echo $newString;
?>
Output:
elcome to ItSolutionStuff.com!
Example 3: PHP Remove Last Character from String
index.php
<?php
/* Declare string variable */
$myString = "Welcome to ItSolutionStuff.com!";
/* Remove Last Character of string */
$newString = substr($myStr, 0, -1);
/* Echo resulted string */
echo $newString;
?>
Output:
Welcome to ItSolutionStuff.com
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- How to Check Query Execution Time in PHP?
- How to Remove Special Characters from String in PHP?
- How to Remove White Space from String in PHP?
- PHP Check Word Exist in String or Not Example
- How to Get a Current Page URL in PHP?
- How to Increase Upload File Size Limit PHP in Ubuntu?
- How to Check If String is URL or Not in PHP?
- How to Convert Array Values to Lowercase in PHP?
- How to Convert Object into Array in PHP?
- How to Get Minimum Key Value of Array in PHP?
- How to Count Number of Files in a Directory in PHP?
- How to Find Day Name from Specific Date in PHP?
- How to Remove Null Values from Array in PHP?