public function EasyRdf_Literal_Boolean::isFalse

Return true if the value of the literal is 'false' or '0'

Return value

bool

File

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Literal/Boolean.php, line 90

Class

EasyRdf_Literal_Boolean
Class that represents an RDF Literal of datatype xsd:boolean

Code

public function isFalse() {
  return strtolower($this->value) === 'false' or $this->value === '0';
}