xref: /dokuwiki/lib/plugins/config/_test/data/config.php (revision 0e748a96cda77fa0131fc0b9601de54a41592ca7)
1<?php
2
3
4$conf['int1'] = 42;
5$conf['int2'] = 6*7;
6
7$conf['str1']  = 'Hello World';
8$conf['str2']  = 'G\'day World';
9$conf['str3']  = "Hello World";
10$conf['str4']  = "Hello 'World'";
11$conf['str5']  = "Hello \"World\"";
12
13$conf['arr1']  = array('foo','bar', 'baz');
14
15$conf['foo']['bar'] = 'x1';
16$conf['foo']['baz'] = 'x2';
17