Skip to content

Commit f296ba5

Browse files
authoredJul 2, 2021
Create display-library-list.php
Updated classic example
1 parent d511e88 commit f296ba5

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed
 

‎samples/display-library-list.php

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<?php
2+
// update of the classic example
3+
4+
require_once 'ToolkitService.php';
5+
6+
$db = '';
7+
$user = '';
8+
$pass = '';
9+
10+
try {
11+
$conn = ToolkitService::getInstance($db, $user, $pass);
12+
} catch (Exception $e) {
13+
echo $e->getMessage(), "\n";
14+
exit();
15+
}
16+
17+
$conn->setOptions(array('stateless' => true));
18+
19+
echo "<pre>";
20+
$rows = $conn->CLInteractiveCommand("DSPLIBL");
21+
if (!$rows) {
22+
echo $conn->getLastError();
23+
} else {
24+
print_r($rows);
25+
}
26+
27+
echo "</pre>";
28+
?>
29+
30+
Output will look like:
31+
<pre>Array
32+
(
33+
[0] => 5770SS1 V7R4M0 190621 Library List 7/02/21 15:10:47 Page 1
34+
[1] => ASP
35+
[2] => Library Type Device Text Description
36+
[3] => QSYS SYS System Library
37+
[4] => QSYS2 SYS System Library for CPI's
38+
[5] => QHLPSYS SYS
39+
[6] => QUSRSYS SYS System Library for Users
40+
[7] => QGPL USR General Purpose Library
41+
[8] => QTEMP USR
42+
[9] => * * * * * E N D O F L I S T I N G * * * * *
43+
)
44+
</pre>

0 commit comments

Comments
 (0)
Please sign in to comment.