Boolean.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. /**
  3. * Zend Framework
  4. *
  5. * LICENSE
  6. *
  7. * This source file is subject to the new BSD license that is bundled
  8. * with this package in the file LICENSE.txt.
  9. * It is also available through the world-wide-web at this URL:
  10. * http://framework.zend.com/license/new-bsd
  11. * If you did not receive a copy of the license and are unable to
  12. * obtain it through the world-wide-web, please send an email
  13. * to license@zend.com so we can send you a copy immediately.
  14. *
  15. * @category Zend
  16. * @package Zend_XmlRpc
  17. * @subpackage Value
  18. * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
  19. * @license http://framework.zend.com/license/new-bsd New BSD License
  20. * @version $Id$
  21. */
  22. /**
  23. * Zend_XmlRpc_Value_Scalar
  24. */
  25. require_once 'Zend/XmlRpc/Value/Scalar.php';
  26. /**
  27. * @category Zend
  28. * @package Zend_XmlRpc
  29. * @subpackage Value
  30. * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
  31. * @license http://framework.zend.com/license/new-bsd New BSD License
  32. */
  33. class Zend_XmlRpc_Value_Boolean extends Zend_XmlRpc_Value_Scalar
  34. {
  35. /**
  36. * Set the value of a boolean native type
  37. * We hold the boolean type as an integer (0 or 1)
  38. *
  39. * @param bool $value
  40. */
  41. public function __construct($value)
  42. {
  43. $this->_type = self::XMLRPC_TYPE_BOOLEAN;
  44. // Make sure the value is boolean and then convert it into a integer
  45. // The double convertion is because a bug in the ZendOptimizer in PHP version 5.0.4
  46. $this->_value = (int)(bool)$value;
  47. }
  48. /**
  49. * Return the value of this object, convert the XML-RPC native boolean value into a PHP boolean
  50. *
  51. * @return bool
  52. */
  53. public function getValue()
  54. {
  55. return (bool)$this->_value;
  56. }
  57. }