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 18$conf['onoff1'] = 0; 19$conf['onoff2'] = 1; 20$conf['onoff3'] = 2; 21$conf['onoff4'] = '0'; 22$conf['onoff5'] = '1'; 23$conf['onoff6'] = false; 24$conf['onoff7'] = true; 25$conf['onoff8'] = 'false'; 26$conf['onoff9'] = 'true'; 27 28$conf['str11'] = 'false senctence'; 29$conf['str12'] = 'true sentence'; 30$conf['str13'] = 'truesfdf'; 31$conf['str14'] = "true"; 32$conf['str15'] = "truesfdsf"; 33