Home Backend Development PHP Tutorial Detailed introduction to PHP's commonly used string internal functions

Detailed introduction to PHP's commonly used string internal functions

Mar 29, 2017 pm 04:24 PM

This chapter describes several commonly used PHP Stringinternal functions. The PHP string internal functions we describe below are: echo, print, strlen, trim, ltrim , rtrim, substr, strtolower, strtoupper, str_replace.

echo and print
See the difference between PHP echo and PHP echo and print for details.

strlen
strlen function can get the length of a string. In the example below, the length of the resulting variable $a is 8.

$a = ' abcdef ';
echo strlen($a); //8
Copy after login

trim
trim The function of the trim function is to remove the spaces on both sides of the string. For example, in the example below, the value of variable $a is 'abcdef', and there is a space on both sides of the string. After trim, since the two spaces on both sides of the string are removed, the length of the string is 6.

$a = ' abcdef ';
echo strlen(trim($a)); //6
Copy after login

ltrim
ltrim function is to remove the spaces on the left side of the string.

echo 'nice',' try'; //nice try
echo 'nice',ltrim(' try'); //nicetry
Copy after login

rtrim
rtrim The function of the rtrim function is to remove the spaces on the right side of the string.

echo 'a ', 'b'; //a b
echo rtrim('a '),'b'; //ab
Copy after login

substr
A part of the string can be obtained through the substr function. The syntax of the substr function is as follows:

substr(string,start,length)
Copy after login

It means starting from the start position of the string string, intercept a string of length length. The first character of string string is at position 0, not 1. The example is as follows:

echo substr('blablar.com',0,3); //bla
Copy after login


The above example indicates that starting from the first character of the string, 3 characters are intercepted, and the return result is bla.

echo substr('blablar.com',3,5); //blar.
Copy after login

The above example means starting from the fourth character of the string blablar.com, intercepting 5 characters, and the result is blar.

You can also not write the parameter length, which means to intercept all subsequent strings from the start position, such as:

echo substr('blablar.com', 3); //blar.com
Copy after login


strtolower
strtolower The function is to turn all strings into lowercase. An example is as follows:

echo strtolower('BlaBlar.COM');//blablar.com
Copy after login

strtoupper
strtoupper and strtolower, on the contrary, function to make all strings uppercase. An example is as follows:

echo strtoupper('china'); //CHINA
Copy after login

str_replace
str_replace is used to replace strings. The syntax of the str_replace function is as follows:

str_replace(search,replace,subject)
Copy after login

It means that in the subject string, find any string that matches search, and then replace all search strings with replace.

The example is as follows:

echo str_replace("bla","CHA","blablar"); //CHACHAr
Copy after login

In the above example, CHA is used to replace all bla in the blablar string, and the returned result is CHACHAr.

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles