如何从 PHP 绑定 Zorba 中的 XQuery 外部变量?
Zorba XQuery 处理器可以PHP API 绑定到 xquery 中声明为 external
的变量?
例如,xquery 中的这一行将绑定到名为 $foo
的外部变量;
declare variable $foo as xs:string external;
但我在 Zorba PHP API 文档中找不到显示如何执行绑定的 PHP 部分的示例,以便 PHP 变量 $foo
绑定到 xquery 变量 $foo
。
能做到吗?
Can the Zorba XQuery processor PHP API bind to variables declared as external
within an xquery?
For example this line in an xquery would bind to an external variable named $foo
;
declare variable $foo as xs:string external;
But I can't find an example in the Zorba PHP API documentation showing how to do the PHP part of the bind, so that the PHP variable $foo
becomes bound to the xquery variable $foo
.
Can it be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以执行以下操作:
这有帮助吗?
You can do the following:
Does this help?