X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=src%2FValue.php;h=e3db3a177e964ed7af9b14d154969c410026378d;hb=affe41f5f2420693ea08b1b9496b6fc5dd786e20;hp=3a53a788f3d3c2c392949b528675f8183ee00cac;hpb=af311c644cddc12aaf24fed1bda2ae44cb502a7f;p=plcapi.git diff --git a/src/Value.php b/src/Value.php index 3a53a78..e3db3a1 100644 --- a/src/Value.php +++ b/src/Value.php @@ -40,7 +40,10 @@ class Value implements \Countable, \IteratorAggregate, \ArrayAccess /// @todo: do these need to be public? /** @var Value[]|mixed */ public $me = array(); - /** @var int $mytype */ + /** + * @var int $mytype + * @internal + */ public $mytype = 0; /** @var string|null $_php_class */ public $_php_class = null; @@ -50,7 +53,7 @@ class Value implements \Countable, \IteratorAggregate, \ArrayAccess * * When no value or type is passed in, the value is left uninitialized, and the value can be added later. * - * @param mixed $val if passing in an array, all array elements should be PhpXmlRpc\Value themselves + * @param Value[]|mixed $val if passing in an array, all array elements should be PhpXmlRpc\Value themselves * @param string $type any valid xmlrpc type name (lowercase): i4, int, boolean, string, double, dateTime.iso8601, * base64, array, struct, null. * If null, 'string' is assumed. @@ -229,6 +232,12 @@ class Value implements \Countable, \IteratorAggregate, \ArrayAccess } } + /** + * @param string typ + * @param Value[]|mixed $val + * @param string $charsetEncoding + * @return string + */ protected function serializedata($typ, $val, $charsetEncoding = '') { $rs = ''; @@ -261,7 +270,7 @@ class Value implements \Countable, \IteratorAggregate, \ArrayAccess // sprintf('%F') could be most likely ok but it fails eg. on 2e-14. // The code below tries its best at keeping max precision while avoiding exp notation, // but there is of course no limit in the number of decimal places to be used... - $rs .= "<${typ}>" . preg_replace('/\\.?0+$/', '', number_format((double)$val, 128, '.', '')) . ""; + $rs .= "<${typ}>" . preg_replace('/\\.?0+$/', '', number_format((double)$val, PhpXmlRpc::$xmlpc_double_precision, '.', '')) . ""; break; case static::$xmlrpcDateTime: if (is_string($val)) { @@ -387,7 +396,7 @@ class Value implements \Countable, \IteratorAggregate, \ArrayAccess * Return next member element for xmlrpc values of type struct. * * @return Value - * @throw \Error starting with php 8.0, this function should not be used, as it will always throw + * @throws \Error starting with php 8.0, this function should not be used, as it will always throw * * @deprecated iterate directly over the object using foreach instead */ @@ -498,8 +507,10 @@ class Value implements \Countable, \IteratorAggregate, \ArrayAccess * Implements the IteratorAggregate interface * * @return \ArrayIterator + * @internal required to be public to implement an Interface */ - public function getIterator() { + public function getIterator() + { switch ($this->mytype) { case 3: return new \ArrayIterator($this->me['struct']); @@ -512,8 +523,14 @@ class Value implements \Countable, \IteratorAggregate, \ArrayAccess } } - public function offsetSet($offset, $value) { - + /** + * @internal required to be public to implement an Interface + * @param mixed $offset + * @param mixed $value + * @throws \Exception + */ + public function offsetSet($offset, $value) + { switch ($this->mytype) { case 3: if (!($value instanceof \PhpXmlRpc\Value)) { @@ -552,7 +569,13 @@ class Value implements \Countable, \IteratorAggregate, \ArrayAccess } } - public function offsetExists($offset) { + /** + * @internal required to be public to implement an Interface + * @param mixed $offset + * @return bool + */ + public function offsetExists($offset) + { switch ($this->mytype) { case 3: return isset($this->me['struct'][$offset]); @@ -566,7 +589,13 @@ class Value implements \Countable, \IteratorAggregate, \ArrayAccess } } - public function offsetUnset($offset) { + /** + * @internal required to be public to implement an Interface + * @param mixed $offset + * @throws \Exception + */ + public function offsetUnset($offset) + { switch ($this->mytype) { case 3: unset($this->me['struct'][$offset]); @@ -582,7 +611,14 @@ class Value implements \Countable, \IteratorAggregate, \ArrayAccess } } - public function offsetGet($offset) { + /** + * @internal required to be public to implement an Interface + * @param mixed $offset + * @return mixed|Value|null + * @throws \Exception + */ + public function offsetGet($offset) + { switch ($this->mytype) { case 3: return isset($this->me['struct'][$offset]) ? $this->me['struct'][$offset] : null;