16 function transCheck ($xml, $xsl, $trans, $browser_transform = 0)
23 if (
'server' ==
$gConf[
'xsl_mode'] && $trans) {
24 $now = gmdate(
'D, d M Y H:i:s') .
' GMT';
26 header(
"Last-Modified: $now");
27 header(
"Cache-Control: no-cache, must-revalidate");
28 header(
"Pragma: no-cache");
31 $xslt->setHeader (
'Content-Type: text/html; charset=UTF-8');
32 $s = $xslt->process ();
33 $s =
'<'.
'?xml version="1.0" encoding="UTF-8"?'.
'>' .
$s;
35 $i1 = strpos (
$s,
'<?xml');
37 $i2 = strpos (
$s,
'?>') + 2;
38 echo substr (
$s, 0, $i1);
39 echo substr (
$s, $i2);
44 header (
'Content-Type: application/xml; charset=UTF-8');
45 echo
'<' .
'?xml version="1.0" encoding="UTF-8"?' .
'>';
46 if (
'client' ==
$gConf[
'xsl_mode'] && $xsl) {
47 echo
'<' .
'?xml-stylesheet type="text/xsl" href="'.str_replace(
$gConf[
'dir'][
'xsl'],
$gConf[
'url'][
'xsl'],$xsl).
'"?'.
'>';
63 foreach($arr
as $k=>$v) {
65 if(!is_numeric($k) && trim($k))
66 $res .= count($v) ?
'<'.$k.
'>'.
array2xml($v).
'</'.$k.
'>' :
'<'.$k.
'/>';
68 $res .=
'<'.$tag.
'>'.
array2xml($v).
'</'.$tag.
'>';
72 if(!is_numeric($k) && trim($k))
73 $res .= strlen(trim($v)) ?
'<'.$k.
'>'.$v.
'</'.$k.
'>' :
'<'.$k.
'/>';
75 $res .=
'<'.$tag.
'>'.$v.
'</'.$tag.
'>';
77 echo
'Error: array without tag';
90 if (0 == get_magic_quotes_gpc()) {
102 foreach ($a
as $k => $v) {
106 $a[$k] = addslashes ($v);
112 if (1 == $iAllowHTML) {
116 } elseif (-1 == $iAllowHTML) {
140 if (get_magic_quotes_gpc())
141 $s = stripslashes(
$s);
150 if (
'server' ==
$gConf[
'xsl_mode']) {
152 } elseif (
'client' ==
$gConf[
'xsl_mode']) {
154 $s = str_replace (array(
'&',
'>',
'<'), array(
'&',
'>',
'<'),
$s);
157 if ($bEncodeSpecialChars) {
158 $s = htmlspecialchars(
$s, ENT_COMPAT,
'UTF-8',
false);
161 if ($bAutohyperlink) {
167 $s =
"<![CDATA[{$s}]]>";
172 preg_match_all(
'/%u([[:alnum:]]{4})/',
$url, $a);
174 foreach ($a[1]
as $uniord) {
175 $dec = hexdec($uniord);
180 }
else if ($dec < 2048) {
181 $utf = chr(192 + (($dec - ($dec % 64)) / 64));
182 $utf .= chr(128 + ($dec % 64));
184 $utf = chr(224 + (($dec - ($dec % 4096)) / 4096));
185 $utf .= chr(128 + ((($dec % 4096) - ($dec % 64)) / 64));
186 $utf .= chr(128 + ($dec % 64));
189 $url = str_replace(
'%u'.$uniord, $utf,
$url);
192 return urldecode(
$url);
197 if (function_exists(
'iconv'))
198 $s = iconv(
"UTF-8",
"UTF-8//IGNORE",
$s);
223 $s = base64_encode(@serialize(
$gConf[
'params']));
225 $f = fopen(
$gConf[
'dir'][
'config'],
'w');
226 if (!
$f)
return false;
227 if (!fwrite(
$f,
$s)) {
240 $s = @file_get_contents(
$gConf[
'dir'][
'config']);
241 if (!
$s)
return false;
243 $aParams = @unserialize(base64_decode(
$s));
245 if ($aParams && is_array($aParams)) {
246 $gConf[
'params'] = $aParams;
254 header (
'Content-Type: text/html; charset=UTF-8');
266 return round($i/1024/1024, 1) .
'M';
268 return round($i/1024, 1) .
'K';
280 return substr(
$s, 0, 1) .
'/' . substr(
$s, 0, 2) .
'/' . substr(
$s, 0, 3) .
'/';
285 return preg_replace ($sPattern, $sReplace,
$s);
290 if (function_exists(
'mb_strlen'))
291 return mb_strlen (
$s);
298 if (function_exists(
'mb_substr'))
299 return mb_substr (
$s, $iStart, $iLen);
301 return substr (
$s, $iStart, $iLen);