PHP - Modify Strings

0
3χλμ.

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.

 
 

 

 

Αναζήτηση
Κατηγορίες
Διαβάζω περισσότερα
άλλο
PHP Global Variables - Superglobals
Superglobals were introduced in PHP 4.1.0, and are built-in variables that are always available...
από PHP Tutorial 2024-05-17 08:08:10 0 3χλμ.
άλλο
PHP while Loop
The while loop - Loops through a block of code as long as the specified condition is...
από PHP Tutorial 2024-05-17 07:48:58 0 2χλμ.
άλλο
PHP foreach Loop
The foreach loop - Loops through a block of code for each element in an array or each...
από PHP Tutorial 2024-05-17 07:50:19 0 2χλμ.
άλλο
PHP Multidimensional Arrays
In the previous pages, we have described arrays that are a single list of key/value pairs....
από PHP Tutorial 2024-05-17 08:07:20 0 3χλμ.
άλλο
PHP - $_SERVER
$_SERVER $_SERVER is a PHP super global variable which holds information about headers,...
από PHP Tutorial 2024-05-17 08:08:50 0 4χλμ.