ItSolutionStuff.com

How to Remove First Character from String in PHP?

By Hardik Savani • May 14, 2024
PHP

Hey Guys,

This tutorial shows you php remove first character from string. you can understand a concept of how to remove first character from string in php. if you want to see an example of php remove first character from string example then you are in the right place. It's a simple example of remove first character from string php.

we will use substr() php function to remove first character from string. i will give you very simple examples to delete first character from string in php.

Example 1: 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 2: 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

Example 3: 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

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 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 →

How to Convert String to Date in PHP?

Read Now →

PHP Remove Duplicates from Multidimensional Array Example

Read Now →

How to Remove Duplicate Values from Array in PHP?

Read Now →

How to Get Folder Path from File Path in PHP?

Read Now →

How to Get Filename from Path in PHP?

Read Now →

How to Quick Run PHP Project on Localhost?

Read Now →

How to Check If String is URL or Not in PHP?

Read Now →

How to Convert Array Values to Lowercase in PHP?

Read Now →

How to Convert Object into Array in PHP?

Read Now →

How to Count Number of Files in Directory using PHP?

Read Now →

How to Find Day Name from Specific Date in PHP?

Read Now →