Get first character of string php

I need to get the first character of the given string. here i have a name in the session variable. i am passing the variable value to the substr to get the first character of the string. but i couldn't.

i want to get the first character of that string.

for example John doe. i want to get the first character of the string j. how can i get it using php?

  

asked Nov 24, 2015 at 10:11

4

For the single-byte encoded (binary) strings:

substr($username, 0, 1);
// or 
$username[0] ?? null;

For the multi-byte encoded strings, such as UTF-8:

mb_substr($username, 0, 1);

Get first character of string php

answered Nov 24, 2015 at 10:14

Get first character of string php

1

Three Solutions Sorted by Robustness

1. mb_substr

It takes into consideration text encoding. Example:

$first_character = mb_substr($str, 0, 1)

2. substr

Example:

$first_character = substr($str, 0, 1);

3. Using brackets ([])

Avoid as it throws a notice in PHP 7.x and a warning in PHP 8.x if the string is empty. Example:

$first_character = $str[0];

answered Sep 30, 2021 at 3:34

Nabil KadimiNabil Kadimi

9,5892 gold badges49 silver badges57 bronze badges

1

Strings can be seen as Char Arrays, and the way to access a position of an array is to use the [] operator, so there's no problem at all in using $str[0] (and I'm pretty sure is much faster than the substr method).

$fstchar = $username[0];

faster than all method

answered Nov 24, 2015 at 10:19

Get first character of string php

Parth ChavdaParth Chavda

1,8011 gold badge20 silver badges29 bronze badges

Strings in PHP are array like, so simply

$username[0]

Get first character of string php

mega6382

8,98116 gold badges47 silver badges68 bronze badges

answered Nov 24, 2015 at 10:14

Get first character of string php

Szymon DSzymon D

3331 silver badge13 bronze badges

I do not have too much experience in php, but this may help you: substr

Nabil Kadimi

9,5892 gold badges49 silver badges57 bronze badges

answered Nov 24, 2015 at 11:47

Vitor FerreiraVitor Ferreira

1531 gold badge3 silver badges11 bronze badges

If the problem is with the Cyrillic alphabet, then you need to use it like this:

mb_substr($username, 0, 1, "UTF-8");

answered Nov 24, 2021 at 7:49

Get first character of string php

alexsoinalexsoin

811 silver badge5 bronze badges

How do I get the first character of a string in PHP?

To get the first character from a string, we can use the substr() function by passing 0,1 as second and third arguments in PHP.

How can I get the first 3 characters of a string in PHP?

To get the first n characters from a string, we can use the built-in substr() function in PHP. Here is an example, that gets the first 3 characters from a following string.

How do I cut a string after a specific character in PHP?

The substr() and strpos() function is used to remove portion of string after certain character. strpos() function: This function is used to find the first occurrence position of a string inside another string. Function returns an integer value of position of first occurrence of string.

What is PHP Ltrim?

The ltrim() function removes whitespace or other predefined characters from the left side of a string. Related functions: rtrim() - Removes whitespace or other predefined characters from the right side of a string. trim() - Removes whitespace or other predefined characters from both sides of a string.