File tree 1 file changed +44
-0
lines changed
1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change
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>
You can’t perform that action at this time.
0 commit comments