Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dokuwiki
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BRIC
dokuwiki
Commits
10f09f2a
Commit
10f09f2a
authored
19 years ago
by
Andreas Gohr
Browse files
Options
Downloads
Patches
Plain Diff
better utf8_substr function
darcs-hash:20060403192537-7ad00-72b129ce494066bce491821a0396db7576873ec2.gz
parent
42c7abd6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
inc/utf8.php
+54
-12
54 additions, 12 deletions
inc/utf8.php
with
54 additions
and
12 deletions
inc/utf8.php
+
54
−
12
View file @
10f09f2a
...
...
@@ -109,22 +109,64 @@ function utf8_strlen($string){
}
/**
* U
nicode
aware
replacement for
substr
()
* U
TF-8
aware
alternative to
substr
*
* @author lmak at NOSPAM dot iti dot gr
* @link http://www.php.net/manual/en/function.substr.php
* @see substr()
* Return part of a string given character offset (and optionally length)
* Note: supports use of negative offsets and lengths but will be slower
* when doing so
*
* @author Harry Fuecks <hfuecks@gmail.com>
* @param string
* @param integer number of UTF-8 characters offset (from left)
* @param integer (optional) length in UTF-8 characters from offset
* @return mixed string or FALSE if failure
*/
function
utf8_substr
(
$str
,
$start
,
$length
=
null
){
preg_match_all
(
"/./u"
,
$str
,
$ar
);
if
(
$length
!=
null
)
{
return
join
(
""
,
array_slice
(
$ar
[
0
],
$start
,
$length
));
}
else
{
return
join
(
""
,
array_slice
(
$ar
[
0
],
$start
));
}
function
utf8_substr
(
$str
,
$offset
,
$length
=
null
)
{
if
(
!
defined
(
'UTF8_NOMBSTRING'
)
&&
function_exists
(
'mb_substr'
)){
if
(
$length
===
null
){
mb_substr
(
$str
,
$offset
);
}
else
{
mb_substr
(
$str
,
$offset
,
$length
);
}
}
if
(
$offset
>=
0
&&
$length
>=
0
)
{
if
(
$length
===
null
)
{
$length
=
'*'
;
}
else
{
$strlen
=
strlen
(
utf8_decode
(
$str
));
if
(
$offset
>
$strlen
)
{
return
''
;
}
if
(
(
$offset
+
$length
)
>
$strlen
)
{
$length
=
'*'
;
}
else
{
$length
=
'{'
.
$length
.
'}'
;
}
}
$pattern
=
'/^.{'
.
$offset
.
'}(.'
.
$length
.
')/us'
;
preg_match
(
$pattern
,
$str
,
$matches
);
if
(
isset
(
$matches
[
1
])
)
{
return
$matches
[
1
];
}
return
false
;
}
else
{
// Handle negatives using different, slower technique
// From: http://www.php.net/manual/en/function.substr.php#44838
preg_match_all
(
'/./u'
,
$str
,
$ar
);
if
(
$length
!==
null
)
{
return
join
(
''
,
array_slice
(
$ar
[
0
],
$offset
,
$length
));
}
else
{
return
join
(
''
,
array_slice
(
$ar
[
0
],
$offset
));
}
}
}
/**
* Unicode aware replacement for substr_replace()
*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment