在 SPARQL 中使用 PHP 变量?
$abc=$_GET["q"];
$store = ARC2::getStore($arc_config);
$p = '
SELECT DISTINCT ?property WHERE {
${"abc"} ?property ?object .
}
';
我想通过 GET 方法检索主题等于 $abc
(PHP 变量)的属性。但我面临着问题。 我使用 ARC2 作为 RDFStore 和 SPARQL 来检索和 PHP。
$abc=$_GET["q"];
$store = ARC2::getStore($arc_config);
$p = '
SELECT DISTINCT ?property WHERE {
${"abc"} ?property ?object .
}
';
I want to retrieve properties whose subject is equal to $abc
(PHP variable) via GET method. But I am facing problems.
I am using ARC2 as RDFStore and SPARQL to retrieve and PHP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
常见的字符串运算
例如
or
or
Common string operations
For example
or
or