


Use the PHP function 'substr' to get the substring of a string
Use the PHP function "substr" to obtain the substring of a string
In PHP programming, you often encounter situations where you need to obtain part of the content of a string. At this time, we can use PHP's built-in function "substr" to achieve this. This article explains how to use the "substr" function to get a substring of a string and provides some code examples.
1. Basic usage of substr function
The substr function is used to obtain a substring of a specified length from a string. Its basic syntax is as follows:
substr(string $string, int $start, int $length): string
Parameter description:
$string
: The string to be operated on.$start
: Starting position. The index of the string starts from 0.$length
: The length of the substring. If the length is not specified, it defaults to the end of the string.
Return value: Return the obtained substring.
The following is a simple example that demonstrates how to use the substr function to get a substring of a string:
$string = "Hello, World!"; $substring = substr($string, 0, 5); // 从位置0开始,获取长度为5的子串 echo $substring; // 输出 "Hello"
In the above example, we defined a string variable$ string
, whose value is "Hello, World!". Then, we use substr($string, 0, 5)
to get a substring of length 5 starting at position 0 and store the result in the variable $substring
. Finally, we use echo
to output the value of variable $substring
, which is "Hello".
2. Common usage examples
- Get the last few characters of the string:
$string = "Hello, World!"; $substring = substr($string, -6); // 获取最后6个字符 echo $substring; // 输出 "World!"
In the above example, we use negative numbers as the starting number The starting position parameter means counting from the end of the string. substr($string, -6)
means getting the last 6 characters, which is "World!".
- Get a certain range of string:
$string = "Hello, World!"; $substring = substr($string, 7, 5); // 从位置7开始,获取长度为5的子串 echo $substring; // 输出 "World"
In the above example, we pass substr($string, 7, 5)
Get the substring between position 7 and 11, that is, "World".
- Get a certain range of the string and convert it to uppercase:
$string = "Hello, World!"; $substring = strtoupper(substr($string, 7, 5)); // 获取子串并转换为大写 echo $substring; // 输出 "WORLD"
In the above example, we will get it through the strtoupper
function Convert the substring to uppercase. strtoupper
Function is used to convert a string to uppercase.
3. Notes
When using the substr function, you need to pay attention to the following points:
- Starting position parameter
$start
Yes A negative number means counting from the end of the string. - If the starting position parameter
$start
exceeds the length of the string, the returned substring is empty. - If the length parameter
$length
is 0 or negative, the returned substring is empty. - The index of the string starts from 0, that is, the index of the first character is 0.
To sum up, we can use the PHP function "substr" to get the substring of a string. By specifying the starting position and length parameters, we can flexibly obtain the desired substring. You can use the substr function to implement some common string operations, such as intercepting a specified range, getting the last few characters, etc.
Hope the above content can be helpful to everyone!
The above is the detailed content of Use the PHP function 'substr' to get the substring of a string. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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

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

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

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

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

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
