Scalar.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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-2009 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
  24. */
  25. require_once 'Zend/XmlRpc/Value.php';
  26. /**
  27. * @category Zend
  28. * @package Zend_XmlRpc
  29. * @subpackage Value
  30. * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
  31. * @license http://framework.zend.com/license/new-bsd New BSD License
  32. */
  33. abstract class Zend_XmlRpc_Value_Scalar extends Zend_XmlRpc_Value
  34. {
  35. /**
  36. * Return the XML code that represent a scalar native MXL-RPC value
  37. *
  38. * @return string
  39. */
  40. public function saveXML()
  41. {
  42. if (!$this->_as_xml) { // The XML code was not calculated yet
  43. $dom = new DOMDocument('1.0');
  44. $value = $dom->appendChild($dom->createElement('value'));
  45. $type = $value->appendChild($dom->createElement($this->_type));
  46. $type->appendChild($dom->createTextNode($this->getValue()));
  47. $this->_as_dom = $value;
  48. $this->_as_xml = $this->_stripXmlDeclaration($dom);
  49. }
  50. return $this->_as_xml;
  51. }
  52. }