mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-03-01 15:21:02 +03:00
38 lines
1.0 KiB
PHP
38 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* Zend Framework (http://framework.zend.com/)
|
|
*
|
|
* @link http://github.com/zendframework/zf2 for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
namespace Zend\XmlRpc\Value;
|
|
|
|
class Boolean extends AbstractScalar
|
|
{
|
|
/**
|
|
* Set the value of a boolean native type
|
|
* We hold the boolean type as an integer (0 or 1)
|
|
*
|
|
* @param bool $value
|
|
*/
|
|
public function __construct($value)
|
|
{
|
|
$this->type = self::XMLRPC_TYPE_BOOLEAN;
|
|
// Make sure the value is boolean and then convert it into an integer
|
|
// The double conversion is because a bug in the ZendOptimizer in PHP version 5.0.4
|
|
$this->value = (int)(bool) $value;
|
|
}
|
|
|
|
/**
|
|
* Return the value of this object, convert the XML-RPC native boolean value into a PHP boolean
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function getValue()
|
|
{
|
|
return (bool) $this->value;
|
|
}
|
|
}
|