00001 <?php 00008 class XMLRPCDoubleParameter extends XMLRPCParameter { 00009 00015 function __construct($value) { 00016 parent::__construct(); 00017 00018 $this->value = (float)$value; 00019 } 00020 00026 function __toString() { 00027 return "<value><double>{$this->value}</double></value>"; 00028 } 00029 }