Fahim Sadi
Fahim Sadi

Reputation: 1

RDF API Syntax error

I am using RAP API for PHP on Netbeans. There is a function named NAMESPACE located at rdf_api/api/OWLVocabulary.php and rdf_api/api/OWLVocabulary.php and the NAMESPACE is creating a Syntax error.

function NAMESPACE()
{
    return RDF_SCHEMA_URI;
}  

Upvotes: 0

Views: 48

Answers (1)

bcmcfc
bcmcfc

Reputation: 26765

Namespace is a reserved keyword since PHP 5.3.

You will probably find that the library you're using only works in earlier versions of PHP.

Indeed, it will have worked up to PHP 5.2: https://3v4l.org/EUqOu

Upvotes: 1

Related Questions