PHP - Modify Strings

0
3KB

PHP has a set of built-in functions that you can use to modify strings.


Upper Case

ExampleGet your own PHP Server

The strtoupper() function returns the string in upper case:

$x = "Hello World!";
echo strtoupper($x);
Try it Yourself »

Lower Case

Example

The strtolower() function returns the string in lower case:

$x = "Hello World!";
echo strtolower($x);
Try it Yourself »

Replace String

The PHP str_replace() function replaces some characters with some other characters in a string.

Example

Replace the text "World" with "Dolly":

$x = "Hello World!";
echo str_replace("World", "Dolly", $x);
Try it Yourself »


Reverse a String

The PHP strrev() function reverses a string.

Example

Reverse the string "Hello World!":

$x = "Hello World!";
echo strrev($x);
Try it Yourself »

Remove Whitespace

Whitespace is the space before and/or after the actual text, and very often you want to remove this space.

Example

The trim() removes any whitespace from the beginning or the end:

$x = " Hello World! ";
echo trim($x);
Try it Yourself »

Learn more in our trim() Function Reference.


Convert String into Array

The PHP explode() function splits a string into an array.

The first parameter of the explode() function represents the "separator". The "separator" specifies where to split the string.

Note: The separator is required.

Example

Split the string into an array. Use the space character as separator:

$x = "Hello World!";
$y = explode(" ", $x);

//Use the print_r() function to display the result:
print_r($y);

/*
Result:
Array ( [0] => Hello [1] => World! )
*/
Try it Yourself »

Complete PHP String Reference

For a complete reference of all string functions, go to our complete PHP String Reference.

 
 

 

 

Pesquisar
Categorias
Leia mais
Outro
PHP Installation
What Do I Need? To start using PHP, you can: Find a web host with PHP and MySQL support...
Por PHP Tutorial 2024-05-17 07:09:40 0 2KB
Outro
PHP - Escape Characters
Escape Character To insert characters that are illegal in a string, use an escape character. An...
Por PHP Tutorial 2024-05-17 07:32:36 0 4KB
Outro
PHP Break
The break statement can be used to jump out of different kind of loops. Break in For...
Por PHP Tutorial 2024-05-17 07:50:37 0 2KB
Outro
PHP Arrays
An array stores multiple values in one single variable: ExampleGet your own PHP Server $cars...
Por PHP Tutorial 2024-05-17 07:53:31 0 2KB
Outro
PHP Nested if Statement
Nested If You can have if statements inside if statements, this is...
Por PHP Tutorial 2024-05-17 07:47:26 0 2KB