PHP 截取中文字符串方法总结
1. 截取GB2312中文字符串
< ?php <br />//截取中文字符串<br />function mysubstr($str, $start, $len) {<br /> $tmpstr = "";<br /> $strlen = $start + $len;<br /> for($i = 0; $i < $strlen; $i++) {<br /> if(ord(substr($str, $i, 1)) > 0xa0) {<br /> $tmpstr .= substr($str, $i, 2);<br /> $i++;<br /> } else<br /> $tmpstr .= substr($str, $i, 1);<br /> }<br /> return $tmpstr;<br />}<br />?>
2. 截取utf8编码的多字节字符串
< ?php<br />//截取utf8字符串<br />function utf8Substr($str, $from, $len)<br />{<br /> return preg_replace('#^(?:[\x00-\x7F]|[\xC0-\xFF][\x80-\xBF]+){0,'.$from.'}'.<br /> '((?:[\x00-\x7F]|[\xC0-\xFF][\x80-\xBF]+){0,'.$len.'}).*#s',<br /> '$1',$str);<br />}<br />?>
3. UTF-8、GB2312都支持的汉字截取函数
< ?php<br />/* <br />Utf-8、gb2312都支持的汉字截取函数 <br />cut_str(字符串, 截取长度, 开始长度, 编码); <br />编码默认为 utf-8 <br />开始长度默认为 0 <br />*/ <br /> <br />function cut_str($string, $sublen, $start = 0, $code = 'UTF-8') <br />{ <br /> if($code == 'UTF-8') <br /> { <br /> $pa = "/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|\xe0[\xa0-\xbf][\x80-\xbf]|[\xe1-\xef][\x80-\xbf][\x80-\xbf]|\xf0[\x90-\xbf][\x80-\xbf][\x80-\xbf]|[\xf1-\xf7][\x80-\xbf][\x80-\xbf][\x80-\xbf]/"; <br /> preg_match_all($pa, $string, $t_string); <br /> <br /> if(count($t_string[0]) - $start > $sublen) return join('', array_slice($t_string[0], $start, $sublen))."..."; <br /> return join('', array_slice($t_string[0], $start, $sublen)); <br /> } <br /> else <br /> { <br /> $start = $start*2; <br /> $sublen = $sublen*2; <br /> $strlen = strlen($string); <br /> $tmpstr = ''; <br /> <br /> for($i=0; $i< $strlen; $i++) <br /> { <br /> if($i>=$start && $i< ($start+$sublen)) <br /> { <br /> if(ord(substr($string, $i, 1))>129) <br /> { <br /> $tmpstr.= substr($string, $i, 2); <br /> } <br /> else <br /> { <br /> $tmpstr.= substr($string, $i, 1); <br /> } <br /> } <br /> if(ord(substr($string, $i, 1))>129) $i++; <br /> } <br /> if(strlen($tmpstr)< $strlen ) $tmpstr.= "..."; <br /> return $tmpstr; <br /> } <br />} <br /> <br />$str = "abcd需要截取的字符串"; <br />echo cut_str($str, 8, 0, 'gb2312'); <br />?>
4. BugFree 的字符截取函数
< ?php <br />/** <br /> * @package BugFree <br /> * @version $Id: FunctionsMain.inc.php,v 1.32 2005/09/24 11:38:37 wwccss Exp $ <br /> * <br /> * <br /> * Return part of a string(Enhance the function substr()) <br /> * <br /> * @author Chunsheng Wang <wwccss@263.net> <br /> * @param string $String the string to cut. <br /> * @param int $Length the length of returned string. <br /> * @param booble $Append whether append "...": false|true <br /> * @return string the cutted string. <br /> */ <br />function sysSubStr($String,$Length,$Append = false) <br />{ <br /> if (strlen($String) < = $Length ) <br /> { <br /> return $String; <br /> } <br /> else <br /> { <br /> $I = 0; <br /> while ($I < $Length) <br /> { <br /> $StringTMP = substr($String,$I,1); <br /> if ( ord($StringTMP) >=224 ) <br /> { <br /> $StringTMP = substr($String,$I,3); <br /> $I = $I + 3; <br /> } <br /> elseif( ord($StringTMP) >=192 ) <br /> { <br /> $StringTMP = substr($String,$I,2); <br /> $I = $I + 2; <br /> } <br /> else <br /> { <br /> $I = $I + 1; <br /> } <br /> $StringLast[] = $StringTMP; <br /> } <br /> $StringLast = implode("",$StringLast); <br /> if($Append) <br /> { <br /> $StringLast .= "..."; <br /> } <br /> return $StringLast; <br /> } <br />} <br /> <br />$String = "CodeBit.cn -- 简单、精彩、通用"; <br />$Length = "18"; <br />$Append = false; <br />echo sysSubStr($String,$Length,$Append); <br />?>

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:


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

Dreamweaver Mac version
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Chinese version
Chinese version, very easy to use
