How to Get First Character from String in PHP?
Hi Folks,
In this quick example, let's see php get first character from string. In this article, we will implement a how to get first character from string in php. If you have a question about php get first character from string example then I will give a simple example with a solution. I explained simply step by step get first character from string php.
we will use substr() php function to get first character from string. i will give you very simple examples to get first character from string in php.
Example 1: 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 2: 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 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 */
$first = substr($myString, 0, 1);
$last = substr($myString, -1);
/* Echo resulted string */
echo $first;
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 Remove Special Characters from String in PHP?
- PHP MySQL Login with Google Account Example
- PHP MySQL Contact US Form with Validation Example
- PHP Import Excel File into MySQL Database Tutorial
- How to Integrate Google Map using Gmaps JS?
- How to Get Folder Path from File Path in PHP?
- How to Check If String is URL or Not in PHP?
- How to Convert Object into Array in PHP?
- PHP Convert Time from One Timezone to Another Example
- How to Get Minimum Key Value of Array in PHP?
- How to Count Number of Files in a Directory in PHP?