php substr is a functional function developed based on the PHP language that can return a part of a string. Sometimes when we use php substr, some garbled characters will appear. How to solve it?
Returns a string of length starting from the start position in the string. The substr function intercepts characters by bytes. Chinese characters are 2 bytes in GB2312 encoding and 3 bytes in UTF-8 encoding. Therefore, if Chinese characters are truncated when intercepting a string of specified length, the returned result will be garbled.
Parameters |
Description |
##string
| Required. Specifies a part of the string to be returned. |
start
|
Required. Specifies where in the string to begin.
- Positive numbers - start at the specified position in the string
- Negative numbers - start at the specified position from the end of the string
- 0 - Starts at the first character in the string
|
length
|
Optional. Specifies the length of the returned string. The default is until the end of the string.
- Positive number - the length returned from the position of the
start parameter
- Negative number - the length returned from the end of the string length
|
php substr 返回值
返回提取的子字符串, 或者在失败时返回 FALSE。
php substr 示例
1、基本使用
<?php
echo substr('abcdef', 1); // bcdef
echo substr('abcdef', 1, 3); // bcd
echo substr('abcdef', 0, 4); // abcd
echo substr('abcdef', 0, 8); // abcdef
echo substr('abcdef', -1, 1); // f
// 访问字符串中的单个字符
// 也可以使用中括号
$string = 'abcdef';
echo $string[0]; // a
echo $string[3]; // d
echo $string[strlen($string)-1]; // f
?>
2、高性能使用
<?php
class apple {
public function __toString() {
return "green";
}
}
echo "1) ".var_export(substr("pear", 0, 2), true).PHP_EOL;
echo "2) ".var_export(substr(54321, 0, 2), true).PHP_EOL;
echo "3) ".var_export(substr(new apple(), 0, 2), true).PHP_EOL;
echo "4) ".var_export(substr(true, 0, 1), true).PHP_EOL;
echo "5) ".var_export(substr(false, 0, 1), true).PHP_EOL;
echo "6) ".var_export(substr("", 0, 1), true).PHP_EOL;
echo "7) ".var_export(substr(1.2e3, 0, 4), true).PHP_EOL;
?>
php substr 常见问题
1. 如何解决php substr乱码问题
简介:substr函数在截取字符时是按字节来截取的,中文字符在GB2312编码时为2个字节,utf-8编码时为3个字节,所以截取指定长度的字符串时如果截断了汉字,那么返回的结果显示出来便会出现乱码。
2. 关于PHP substr()函数的几个程序
简介:前面小编已经为大家分享了两篇关于phpsubstr()函数的一些用法技巧,现在和大家分享几个用PHP substr()函数写的程序,赶紧来get吧。
3. php substr()函数处理中文详解
简介:substr()函数中文版
4. php substr()函数字符串截取用法实例讲解
简介:这篇文章主要介绍了PHP中substr函数字符串截取用法,结合实例形式分析说明的PHP中substr函数的功能,定义与具体使用技巧,需要的朋友可以参考下
5. php substr()函数的用法
简介:这篇文章主要介绍了php中substr()函数参数说明及用法,以实例形式深入分析了substr()函数中的各个参数的含义,并举例说明了其对应的用法,需要的朋友可以参考下
6. 有关php substr()函数的文章推荐10篇
简介:本文实例讲述了PHP中字符串长度的截取用法。分享给大家供大家参考,具体如下:php中提供了很多使用函数,其中字符串的截取函数也不例外,而且功能也非常强大。<?php//文件编码格式为UTF-8$str='在公园船上,有一个漂亮的女孩,如果在湖中央发生点什么……';echo mb_substr($str,0,7,'UTF-8');//这里设...
7. php substr中文乱码解决办法
简介:php substr中文乱码解决办法
8. PHP substr截取字符串时,中文出现乱码的问题解决
简介::本篇文章主要介绍了PHP substr截取字符串时,中文出现乱码的问题解决,对于PHP教程有兴趣的同学可以参考一下。
9. php substr截断中文半个汉字乱码问题的解决方法
简介:php substr截断中文半个汉字乱码问题的解决方法
10. PHP substr 截取字符串出现乱码问题解决方法[utf8与gb2312]_PHP教程
简介:PHP substr 截取字符串出现乱码问题解决方法[utf8与gb2312]。substr --- 取得部份字符串 语法 : string substr (string string, int start [, int length]) 说明 : substr( )传回 string的一部份字符串,由参数 start和 length指定
11. 浅析PHP substr,mb_substr以及mb_strcut的区别和用法_PHP教程
简介:浅析PHP substr,mb_substr以及mb_strcut的区别和用法。PHP substr()函数可以 分割文字,但要分割的文字如果包括中文字符往往会遇到问题,这时可以用mb_substr()/mb_strcut这个函数,mb_substr() /mb_strcu
12. PHP substr_replace() function syntax and parameters_PHP tutorial
Introduction: PHP substr_replace() function syntax and parameters. PHP substr_replace() function syntax substr_replace(string,replacement,start,length) Parameter Description string Required. Specifies the string to check. replacement required. Specifies what to insert
13. php substr(),explode(),strrev()_PHP tutorial
Introduction: php substr(),explode(),strrev(). substr(str,start,length); Example: substr(php tutorial is very good language,4,5); The output is is ve; When the length of startstr, the return is (); substr(php is very good language,26 ,5); s
14. php substr_replace replaces the character at the specified position and memory corruption vulnerability_PHP tutorial
Introduction: php substr_replace replaces characters at specified positions and memory corruption vulnerability. PHP tutorial substr_replace replaces characters at specified positions and memory corruption vulnerability Tips and comments Note: If start is a negative number and length is less than or equal to start, length is 0. $username =
15. Introduction to the functions of the PHP Substr library_PHP tutorial
##Introduction: PHP Substr library Function introduction. Beginner The following PHP Substr library function program is not perfect, but there is no problem in processing general Chinese (GB18030, GB2312, BIG5). This function is not suitable for UTF-8 encoded text. //$str characters
16. PHP substr interception of Chinese characters appears garbled problem solving_PHP tutorial
Introduction: PHP substr intercepts Chinese characters and solves the problem of garbled characters. We are using 1. Using the mb_substr interception of the mbstring extension library will avoid garbled characters. 2. Write the interception function yourself, but the efficiency is not as high as using the mbstring extension library. 3. If it is only
17. Explanation on the implementation skills of PHP substr function_PHP tutorial
Introduction: Explanation on the implementation skills of PHP substr function. I just sorted out the usage of the substr function and made a few examples to clear up the confusion for newcomers. Experts please pass by. Let’s first take a look at the syntax of the PHP substr function: string substr(string
##18. Demonstrating the use of the PHP substr function_PHP tutorial
Introduction: Demonstrate the use of PHP substr function. PHP is the most commonly used language for dynamically developing WEB pages. String processing is the most commonly used in programming. Let’s talk about PHP substr in detail here. There are a bunch of applications similar to ##19.
php substr() function to implement filtering with a mantissa of 4_PHP tutorial Introduction: The php substr() function implements filtering numbers with mantissas of 4. Today, a customer wants to generate 400 phone numbers in batches. The starting position is 10000. At first, I directly generated numbers such as 10004, but the merchants did not like this. Number, the filtered mantissa is
20.
php substr_replace replace string some examples_PHP tutorialIntroduction : Some examples of php substr_replace replacing strings. Substr_replace is a bit like str_replace, which directly replaces part of the string. Let me introduce to you how to use the substr_replace() function to replace part of the string.
21. php substr() function to intercept Chinese string garbled_PHP tutorial
Introduction: php substr() function to intercept The Chinese string is garbled. In PHP, if I want to use substr() to intercept the string in English, it will be a tragedy. But don’t worry, we can use other methods to solve it. p
22. PHP substr Interception of Chinese garbled problem solution_PHP tutorial
Introduction: Solution to the problem of intercepting Chinese garbled characters with PHP substr. PHP provides us with several character interception functions, including substr, mb_substr, and mb_strcut functions. Some of our PHP beginners will use substr to intercept Chinese characters, but they find that the Chinese characters will be garbled
23. Several application examples of the PHP substr_replace() function_PHP tutorial
Introduction: Several application examples of the PHP substr_replace() function. Introduction to substr_replace() function The substr_replace() function replaces part of a string with another string. Syntax: substr_replace(string,replacement,start,length) parameter string, must
24. Several program applications of PHP substr() function_PHP tutorial
Introduction: Several program applications of PHP substr() function. Introduction to substr() function The substr() function returns a part of a string. Syntax: substr(string,start,length). string: required. Specifies a part of the string to be returned. start: Must
25. php substr,iconv_substr,mb_substr_PHP tutorial
##Introduction: php substr,iconv_substr,mb_substr . When PHP intercepts Chinese strings, it often uses two functions iconv_substr and mb_substr. How to choose between these two functions? You will understand by referring to the examples introduced in this article.
For more PHP related knowledge, please visit PHP Chinese website!