Php source code analysis using the DZX1.5 string truncation function cutstr

Source: Internet
Author: User

Php source code analysis using the DZX1.5 string truncation function cutstr

This article describes how to use the DZX1.5 string truncation function cutstr in php source code analysis. Share it with you for your reference. The specific analysis is as follows:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

<? Php

/**

* Function source DZX1.5, file/source/function/function_core.php

*/

Define ('charset', 'utf-8 ');

Function cutstr ($ string, $ length, $ dot = "..."){

If (strlen ($ string) <= $ length ){

Return $ string;

}

If (strtolower (CHARSET) = "UTF-8 "){

$ N = $ tn = $ noc = 0;

While ($ n <strlen ($ string )){

$ T = ord ($ string [$ n]);

If ($ t = 9 | $ t = 10 | (32 <= $ t & $ t <= 126 )){

$ Tn = 1; $ n ++; $ noc ++;

} Elseif (194 <=$ t & $ t <= 223 ){

$ Tn = 2; $ n + = 2; $ noc + = 2;

} Elseif (224 <=$ t & $ t <= 239 ){

$ Tn = 3; $ n + = 3; $ noc + = 2;

} Elseif (240 <=$ t & $ t <= 247 ){

$ Tn = 4; $ n + = 4; $ noc + = 2;

} Elseif (248 <=$ t & $ t <= 251 ){

$ Tn = 5; $ n + = 5; $ noc + = 2;

} Elseif ($ t = 252 | $ t = 253 ){

$ Tn = 6; $ n + = 6; $ noc + = 2;

} Else {

$ N ++;

}

If ($ noc >=$ length ){

Break;

}

}

If ($ noc> $ length ){

$ N-= $ tn;

}

$ Strcut = substr ($ string, 0, $ n );

} Else {

For ($ I = 0; $ I <$ length; $ I ++ ){

$ Strcut. = ord ($ string [$ I]) & gt; 127? $ String [$ I]. $ string [++ $ I]: $ string [$ I];

}

}

$ Pos = strrpos ($ strcut, chr (1 ));

If ($ pos! = False ){

$ Strcut = substr ($ strcut, 0, $ pos );

}

Return $ strcut. $ dot;

}

$ String = 'test database ablci102020 @(#)!)! Test labor ddk ';

Echo cutstr ($ string, 15 );

/* End of php */

The running result is as follows:

Test Database ablci1020...

I hope this article will help you with php programming.

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.