Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
recompose example
if
(
null !==
$mbEncoding
=
(
2 /* MB_OVERLOAD_STRING */ &
(int)
\
ini_get
(
'mbstring.func_overload'
)
)
?
mb_internal_encoding
(
)
: null
)
{
mb_internal_encoding
(
'8bit'
)
;
}
$r
= self::
decompose
(
$s
,
$K
)
;
if
(
$C
)
{
if
(
null === self::
$C
)
{
self::
$C
= self::
getData
(
'canonicalComposition'
)
;
}
$r
= self::
recompose
(
$r
)
;
}
if
(
null !==
$mbEncoding
)
{
mb_internal_encoding
(
$mbEncoding
)
;
}
return
$r
;
}
private
static
function
recompose
(
$s
)
{
$ASCII
= self::
$ASCII
;