コード例 #1
0
ファイル: Model.php プロジェクト: bakulf/raop
 /**
  * Return the number of statements in the model.
  *
  * @return  integer The number of statements
  * @access  public
  */
 public function size()
 {
     return librdf_model_size($this->model);
 }
コード例 #2
0
ファイル: Graph.php プロジェクト: sgml/rww.io
 function size()
 {
     if ($this->_model) {
         return librdf_model_size($this->_model);
     }
 }