You are here

public function EasyRdf_Literal_Decimal::getValue in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/Literal/Decimal.php \EasyRdf_Literal_Decimal::getValue()

Return the value of the literal cast to a PHP string

Return value

string

Overrides EasyRdf_Literal::getValue

File

vendor/easyrdf/easyrdf/lib/EasyRdf/Literal/Decimal.php, line 82

Class

EasyRdf_Literal_Decimal
Class that represents an RDF Literal of datatype xsd:decimal

Code

public function getValue() {
  return strval($this->value);
}