How to intercept the first few characters in php

王林
Release: 2023-03-04 11:28:02
Original
7453 people have browsed it

How to intercept the first few characters in php: You can use the substr() function to intercept. The substr() function is used to return the extracted part of the string, returning false if it fails, or returning an empty string. The specific usage is as follows: [substr("Hello world",0,10)].

How to intercept the first few characters in php

The substr() function returns the extracted portion of the string, FALSE if it fails, or an empty string.

(Recommended tutorial: php graphic tutorial)

Syntax:

substr(string,start,length)
Copy after login

Parameters:

  • string Required. Specifies a part of the string to be returned.​

  • #start Required. Specifies where in the string to begin.

  • length Optional. Specifies the length of the string to be returned. The default is until the end of the string.

(Video tutorial recommendation: php video tutorial)

Example:

<?php
echo substr("Hello world",0,10)."<br>";
echo substr("Hello world",1,8)."<br>";
echo substr("Hello world",0,5)."<br>";
echo substr("Hello world",6,6)."<br>";
echo substr("Hello world",0,-1)."<br>";
echo substr("Hello world",-10,-2)."<br>";
echo substr("Hello world",0,-6)."<br>";
echo substr("Hello world",-2-3)."<br>";
?>
Copy after login

The above is the detailed content of How to intercept the first few characters in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!