summaryrefslogtreecommitdiffstats
path: root/samples/ListChildren.php
blob: ccedde452b556cf8e6fa3de37a03584a010c51a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

require(__DIR__ . '/../vendor/autoload.php');

$options = array(
    'username' => 'testing',
    'password' => 'password',
);

$ssrs = new \SSRS\Report('http://localhost/reportserver/', $options);
$result = $ssrs->listChildren('/Reports', true);

foreach ($result->CatalogItems AS $item) {
    echo $item->Name . ': ' . $item->Path . PHP_EOL;
}