How to Get Last Character from String in PHP?
Hey,
In this guide, we are going to learn php get last character from string. you will learn how to get last character from string in php. We will look at an example of php get last character from string example. you will learn get last character from string php.
we will use substr() php function to get last character from string. i will give you very simple examples to get last character from string in php.
Example 1: PHP Get Last Character from String
index.php
<?php
/* Declare string variable */
$myString = "Welcome to ItSolutionStuff.com!";
/* get Last Character of string */
$char = substr($myStr, -1);
/* Echo resulted string */
echo $char;
?>
Output:
!
Example 2: PHP Get First Character from String
index.php
<?php
/* Declare string variable */
$myString = "Welcome to ItSolutionStuff.com!";
/* get First Character of string */
$char = substr($myString, 0, 1);
/* Echo resulted string */
echo $char;
?>
Output:
W
Example 3: PHP Get First and Last Character from String
index.php
<?php
/* Declare string variable */
$myString = "Welcome to ItSolutionStuff.com!";
/* get First and Last Character of string */
$last = substr($myString, 0, 1);
$last = substr($myString, -1);
/* Echo resulted string */
echo $last;
echo $last;
?>
Output:
W
!
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 Remove First Character from String in PHP?
- PHP Remove First and Last Character from String Example
- PHP Remove Whitespace from Beginning and End of String Example
- How to Check Query Execution Time in PHP?
- How to Add Days to Date in PHP?
- How to get HTML Tag Attribute Value in PHP?
- PHP Generate QR Code using Google Chart API Example
- How to Partially Hide Email Address in PHP?
- How to Change Date Format in Codeigniter?
- Dynamic Dependent Dropdown using VueJS and PHP
- PHP - Getting Started PHPUnit Test Example
- PHP Remove Duplicates from Multidimensional Array Example
- How to Get Folder Path from File Path in PHP?
- How to Count Number of Files in a Directory in PHP?