Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
display page excerpt - plugin
#11
Hi,

UTF-8 is a multi-bytes encoding (and variable-width encoding), using one (ASCII) to three (Hindi) bytes according to character nature. UTF-16 follow the same process but use more space for ASCII and less for non-ASCII.

substr() is a byte substraction function : when you set start and stop, you are not indicating characters but bytes. If the encoding use single bytes (like ASCII) it's the same thing, but if the encoding use multi-bytes (UTF-x, ISO-x...), you could cut a string in the middle of a character bytes, who become unreadable. To avoid this, you have to know the number of bytes used by every characters : it's the work of mb_substr().
mb_substr() is a multi-bytes (and variable-width) substraction function : when you set start and stop, you are indicating characters, according to a specific encoding. The function manage the number of bytes to skip according to every character bytes width.

To read :
http://en.wikipedia.org/wiki/UTF-8
http://en.wikipedia.org/wiki/UTF-8#Description
http://en.wikipedia.org/wiki/UTF-8#Disadvantages_2
http://en.wikipedia.org/wiki/Character_encoding
http://en.wikipedia.org/wiki/Variable-width_encoding
http://php.net/manual/en/ref.mbstring.php
http://php.net/manual/en/function.substr.php
http://php.net/manual/en/function.mb-substr.php

yojoe Wrote:edit: completely forgot to mention about changes you made. I'm glad you didn't at least delete whole credits xD
Oh, I hope not to have done something wrong! I worked on it after your request for help, and could not hold me to restructure the whole. The official author, indicated in the admin panel is still you :\
Reply


Messages In This Thread
display page excerpt - plugin - by yojoe - 2010-11-18, 23:36:21
RE: display page excerpt - plugin - by wakh - 2014-03-06, 02:25:44
RE: display page excerpt - plugin - by shawn_a - 2014-03-06, 02:39:23
RE: display page excerpt - plugin - by hameau - 2014-03-07, 21:07:47
RE: display page excerpt - plugin - by datiswous - 2014-03-08, 02:13:03
RE: display page excerpt - plugin - by wakh - 2014-03-07, 23:11:00
RE: display page excerpt - plugin - by bluzer - 2015-07-13, 01:07:17
display page excerpt - plugin - by arthur_a_keen - 2010-11-19, 00:11:49
display page excerpt - plugin - by yojoe - 2010-11-19, 01:17:27
display page excerpt - plugin - by Oleg06 - 2010-11-26, 23:54:34
display page excerpt - plugin - by yojoe - 2010-11-27, 02:10:55
display page excerpt - plugin - by p01 - 2010-12-05, 01:05:04
display page excerpt - plugin - by Oleg06 - 2010-12-05, 02:41:59
display page excerpt - plugin - by p01 - 2010-12-05, 03:10:11
display page excerpt - plugin - by Oleg06 - 2010-12-05, 03:37:30
display page excerpt - plugin - by yojoe - 2010-12-06, 06:11:56
display page excerpt - plugin - by p01 - 2010-12-06, 22:04:21
display page excerpt - plugin - by Cottser - 2010-12-22, 03:50:21
display page excerpt - plugin - by Oleg06 - 2011-06-08, 20:19:28
display page excerpt - plugin - by yojoe - 2011-06-08, 21:35:19
display page excerpt - plugin - by Oleg06 - 2011-06-08, 22:06:42
display page excerpt - plugin - by Texta - 2011-06-18, 01:14:53
display page excerpt - plugin - by lanooz - 2011-07-21, 09:24:59
display page excerpt - plugin - by sausage - 2011-09-26, 03:49:39
display page excerpt - plugin - by Connie - 2011-09-26, 04:00:16
display page excerpt - plugin - by Ampersand - 2011-11-02, 01:30:25
display page excerpt - plugin - by Johonwayni - 2011-11-12, 01:32:07
display page excerpt - plugin - by Dominic - 2012-02-02, 12:40:32
display page excerpt - plugin - by yurifanboy - 2012-02-02, 14:30:08



Users browsing this thread: 1 Guest(s)