Strings

String is a sequence of symbols. All of the symbols can be accessed via their indexes starting from 0.

Indexes

Let's say we have the string "computer". It's structure is the following:

string-structure

So if we need to print the first letter (c) and the 3rd letter (m), we do:

Output:

Length

Length is the count of the symbols contained in a string.

It's accessed via the strlen function.

Example:

Output:

Via strlen we can access the last symbol of a string.

Example:

Output:

Access outside of bounds

Accessing string outside of it's bounds results in warning.

Let's look the following example:

The string has indexes from 0 to 4. Accessing index outside of that bound (in this case 5) causes warning.

Contains

We can check if string is contained in a string via the strpos function.

Examples:

Output:

Note: you could use str_contains instead of strpos for PHP 8.0 and newer versions.

String iteration

All symbols of a string can be iterated via for loop.

Let's print all letters of a word that are not vowels:

Output:

In this case strpos($vowels, $letter) === false means that $letter is a symbol that's not a vowel letter.