Execute a XQuery with PHP

前端 未结 8 845
青春惊慌失措
青春惊慌失措 2020-11-30 13:02

How to execute a XQuery in PHP? Can you give me an example?

Thank you.

8条回答
  •  借酒劲吻你
    2020-11-30 13:29

    The following link should be useful: http://dl.dropbox.com/u/1487285/php/php.html

    Hello {$world}
    XQ; 
    
    $xquery->importQuery($query); 
    
    $xquery->setVariable('world', 'World!'); 
    
    echo $xquery->execute(); 
    ?>
    

提交回复
热议问题