mirror of
https://codeberg.org/icewind/SearchDAV.git
synced 2026-06-03 17:44:06 +02:00
9 lines
194 B
PHP
9 lines
194 B
PHP
<?php
|
|
|
|
require_once '../vendor/autoload.php';
|
|
|
|
$parser = new \SearchDAV\DAV\QueryParser();
|
|
|
|
$body = file_get_contents('./basicquery.xml');
|
|
|
|
var_dump($parser->parse($body)['{DAV:}basicsearch']);
|