| Source for file Model.phpDocumentation is available at Model.php 
// ----------------------------------------------------------------------------------// ---------------------------------------------------------------------------------- * A model is a programming interface to an RDF graph. * An RDF graph is a directed labeled graph, as described in http://www.w3.org/TR/rdf-mt/. * It can be defined as a set of <S, P, O> triples, where P is a uriref, S is either * a uriref or a blank node, and O is either a uriref, a blank node, or a literal. * @author Radoslaw Oldakowski <radol@gmx.de> * @author Daniel Westphal <mail@d-westphal.de>     * Affects creating of new resources and serialization syntax.     * Return current baseURI.     * Load a model from a file containing RDF, N3 or N-Triples.     * This function recognizes the suffix of the filename (.n3 or .rdf) and     * calls a suitable parser, if no $type is given as string ("rdf" "n3" "nt");     * If the model is not empty, the contents of the file is added to this Model_MDB.     * @param string $filename     function load($filename, $type = null)        if ((isset($type)) && ($type =='n3') || ($type =='nt')) {            $parser =& new RDF_N3_Parser() ;        } elseif (( isset($type)) && ($type =='rdf')) {            // create a parser according to the suffix of the filename            // if there is no suffix assume the file to be XML/RDF            preg_match("/\.([a-zA-Z0-9_]+)$/", $filename, $suffix);                $parser =& new RDF_N3_Parser() ;        $temp =& $parser-> generateModel($filename) ;        if (PEAR:: isError($temp)) {        $result = $this-> addModel($temp) ;        if (PEAR:: isError($result)) {            $this->setBaseURI($temp-> getBaseURI()) ;     * Adds a statement from another model to this model.     * If the statement to be added contains a blankNode with an identifier     * already existing in this model, a new blankNode is generated.     * @param RDF_Object Statement   $statement        $subject = $statement-> getSubject() ;        $object = $statement-> getObject() ;        if (is_a($subject, 'RDF_BlankNode')) {            $label = $subject-> getLabel() ;                $res1 = $this-> findFirstMatchingStatement($subject, null, null) ;                if (PEAR:: isError($res1)) {                $res2 = $this-> findFirstMatchingStatement( null, null, $subject) ;                if (PEAR:: isError($res2)) {                    if (PEAR:: isError($blankNodes_tmp[$label])) {                        return $blankNodes_tmp[$label];                    $statement->subj = $blankNodes_tmp[$label] ;                    $blankNodes_tmp[$label] = $subject ;                $statement->subj = $blankNodes_tmp[$label] ;        if (is_a($object, 'RDF_BlankNode')) {            $label = $object-> getLabel() ;                $res1 = $this-> findFirstMatchingStatement($object, null, null) ;                if (PEAR:: isError($res1)) {                $res2 = $this-> findFirstMatchingStatement( null, null, $object) ;                if (PEAR:: isError($res2)) {                    if (PEAR:: isError($blankNodes_tmp[$label])) {                        return $blankNodes_tmp[$label];                    $statement->obj = $blankNodes_tmp[$label] ;                    $blankNodes_tmp[$label] = $object ;                $statement->obj = $blankNodes_tmp[$label] ;        return $this->add($statement) ;
		    
 
		    Documentation generated on Mon, 11 Mar 2019 15:39:28 -0400 by phpDocumentor 1.4.4 . PEAR Logo Copyright ©  PHP Group 2004.
	       |