You are here

public function EasyRdf_Sparql_Result::numRows in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/Sparql/Result.php \EasyRdf_Sparql_Result::numRows()

Return the number of rows in a query result of type bindings.

Return value

integer The number of rows.

File

vendor/easyrdf/easyrdf/lib/EasyRdf/Sparql/Result.php, line 135

Class

EasyRdf_Sparql_Result
Class for returned for SPARQL SELECT and ASK query responses.

Code

public function numRows() {
  return count($this);
}