用PHP执行XQuery

前端之家收集整理的这篇文章主要介绍了用PHP执行XQuery前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在 PHP执行 XQuery?你可以给我一个例子吗?

谢谢.

梨包: http://www.pecl.php.net/package/Zorba(错误404链接)

新(2011):http://www.zorba-xquery.com/html/entry/2011/12/27/PHP_Meets_XQuery

zorba文档:http://www.zorba-xquery.com/

zorba docs提供了一个简单的例子:

  1. //Include for the Object-Oriented API
  2. require zorba_api.PHP’;
  3.  
  4. //Initialization of Zorba store
  5. $store = InMemoryStore::getInstance();
  6. //Initialization of Zorba
  7. $zorba = Zorba::getInstance($store);
  8.  
  9. $xquery = <<< EOT
  10. let $message := Hello World!’
  11. return
  12. <results>
  13. <message>{$message}</message>
  14. </results>
  15. EOT;
  16.  
  17. //Compile the query
  18. $lQuery = $zorba->compileQuery($xquery);
  19. //Run the query…
  20. echo $lQuery->execute();
  21. //…and destroy it
  22. $lQuery->destroy();
  23.  
  24. //Shutdown of Zorba
  25. $zorba->shutdown();
  26. //Shutdown of Zorba store
  27. InMemoryStore::shutdown($store);

猜你在找的PHP相关文章