ILIAS
Release_4_1_x_branch Revision 61804
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Groups
Pages
String.php
Go to the documentation of this file.
1
<?php
2
3
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4 foldmethod=marker: */
4
5
// LICENSE AGREEMENT. If folded, press za here to unfold and read license {{{
6
40
// }}}
41
42
// dependencies {{{
43
require_once
'XML/RPC2/Exception.php'
;
44
require_once
'XML/RPC2/Backend/Php/Value/Scalar.php'
;
45
// }}}
46
57
class
XML_RPC2_Backend_Php_Value_String
extends
XML_RPC2_Backend_Php_Value_Scalar
58
{
59
60
// {{{ constructor
61
67
public
function
__construct
($nativeValue)
68
{
69
$this->
setScalarType
(
'string'
);
70
$this->
setNativeValue
($nativeValue);
71
}
72
73
// }}}
74
// {{{ encode()
75
81
public
function
encode
()
82
{
83
return
'<string>'
. strtr($this->
getNativeValue
(),array(
'&'
=>
'&'
,
'<'
=>
'<'
,
'>'
=>
'>'
)) .
'</string>'
;
84
}
85
86
// }}}
87
// {{{ decode()
88
94
public
static
function
decode
($xml)
95
{
96
/* Stupid way of testing for the presence of string element. I don't know another one.
97
At least got rid of the xpath and consequent reparsing of the XML
98
*/
99
if
($xml->string->asXML() === FALSE) {
100
return
(
string
) $xml;
101
}
else
{
102
return
(
string
) $xml->string;
103
}
104
}
105
106
// }}}
107
108
}
109
110
?>
Services
PEAR
lib
XML
RPC2
Backend
Php
Value
String.php
Generated on Thu Apr 21 2016 19:02:59 for ILIAS by
1.8.1.2 (using
Doxyfile
)