Class Boolean

Summary

Fully Qualified Name: Zend\XmlRpc\Value\Boolean
Extends: AbstractScalar

Description

Methods

Name Description Defined By
__construct() Set the value of a boolean native type We hold the boolean type as an integer (0 or 1) Boolean
generateXml() Generate XML code that represent a native XML/RPC value AbstractValue
getGenerator() Get XML generator instance AbstractValue
getType() Get the native XML-RPC type (the type is one of the Value::XMLRPC_TYPE_* constants) AbstractValue
getValue() Return the value of this object, convert the XML-RPC native boolean value into a PHP boolean Boolean
getXmlRpcTypeByValue() Get XML-RPC type for a PHP native variable AbstractValue
getXmlRpcValue() AbstractValue
saveXml() Return the XML code that represent a native MXL-RPC value AbstractValue
setEncoding() Changes the encoding of the generator AbstractValue
setGenerator() Sets XML generator instance AbstractValue

Method Details

__construct()

Set the value of a boolean native type We hold the boolean type as an integer (0 or 1)

Parameter Name Type Description
$value bool

Returns:

generateXml()

Generate XML code that represent a native XML/RPC value

Returns: void

getGenerator()

Get XML generator instance

Returns: \Zend\XmlRpc\Generator\GeneratorInterface

getType()

Get the native XML-RPC type (the type is one of the Value::XMLRPC_TYPE_* constants)

Returns: string

getValue()

Return the value of this object, convert the XML-RPC native boolean value into a PHP boolean

Returns: bool

getXmlRpcTypeByValue()

Get XML-RPC type for a PHP native variable

Parameter Name Type Description
$value mixed

Returns: string

getXmlRpcValue()

Parameter Name Type Description
$value
$type

Returns: void

saveXml()

Return the XML code that represent a native MXL-RPC value

Returns: string

setEncoding()

Changes the encoding of the generator

Parameter Name Type Description
$encoding string

Returns: void

setGenerator()

Sets XML generator instance

Parameter Name Type Description
$generator null|\Generator\GeneratorInterface

Returns: void

Top