You are here

public function EasyRdf_Literal_Date::year in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/Literal/Date.php \EasyRdf_Literal_Date::year()

A full integer representation of the year, 4 digits

Return value

integer

File

vendor/easyrdf/easyrdf/lib/EasyRdf/Literal/Date.php, line 115

Class

EasyRdf_Literal_Date
Class that represents an RDF Literal of datatype xsd:date

Code

public function year() {
  return (int) $this
    ->format('Y');
}