Php string truncation function usage analysis, php string truncation function _ PHP Tutorial

Source: Internet
Author: User
Tags function examples
Php string truncation function usage analysis, php string truncation function. Php string truncation function usage analysis, php string truncation function examples in this article analyze the php string truncation function usage. Share it with you for your reference. The specific analysis is as follows: php built-in php string truncation function usage analysis, php string truncation function

This article analyzes the usage of the php string truncation function. Share it with you for your reference. The specific analysis is as follows:

Php built-in string truncation functions can only process English, numbers cannot intercept Chinese, the following example is better, the first is for beginners to learn, the specific code is as follows:

The code is as follows:

<? Php
// Construct a string
$ Str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ ";
Echo "original string:". $ Str ."
";
// Intercept in various ways
$ Str1 = substr ($ str, 5 );
Echo "starts from 5th characters and ends with:". $ str1 ."
";
$ Str2 = substr ($ str, 9, 4 );
Echo "starts with 9th characters and starts with 4 characters:". $ str2 ."
";
$ Str3 = substr ($ str,-5 );
Echo "takes the last five characters:". $ str3 ."
";
$ Str4 = substr ($ str,-8, 4 );
Echo "starts from the last 8th characters and returns four characters:". $ str4 ."
";
$ Str5 = substr ($ str,-8,-2 );
Echo "starts from the last 8th characters to the last 2nd characters:". $ str5 ."
";
?>


Supports intercept between Chinese and English. the code is as follows:

The code is as follows:

<? Php
/*
------------------------------------------------------
Parameters:
$ Str_cut: string to be truncated
$ Length: maximum length allowed for string display

Program function: Intercept character strings mixed with full-width and half-width characters (Chinese characters and English characters) to avoid garbled characters
------------------------------------------------------
*/
Function substr_cut ($ str_cut, $ length)
{
If (strlen ($ str_cut)> $ length)
{
For ($ I = 0; $ I <$ length; $ I ++)
If (ord ($ str_cut [$ I])> 128) $ I ++;
$ Str_cut = substr ($ str_cut, 0, $ I )."..";
}
Return $ str_cut;
}
?>

I hope this article will help you with php programming.

In this article, we analyze the usage of the php string truncation function. Share it with you for your reference. The specific analysis is as follows: php comes...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.