<?php


$conf['int1'] = 42;
$conf['int2'] = 6*7;

$conf['str1']  = 'Hello World';
$conf['str2']  = 'G\'day World';
$conf['str3']  = "Hello World";
$conf['str4']  = "Hello 'World'";
$conf['str5']  = "Hello \"World\"";

$conf['arr1']  = array('foo','bar', 'baz');

$conf['foo']['bar'] = 'x1';
$conf['foo']['baz'] = 'x2';

$conf['onoff1'] = 0;
$conf['onoff2'] = 1;
$conf['onoff3'] = 2;
$conf['onoff4'] = '0';
$conf['onoff5'] = '1';
$conf['onoff6'] = false;
$conf['onoff7'] = true;
$conf['onoff8'] = 'false';
$conf['onoff9'] = 'true';

$conf['str11']  = 'false senctence';
$conf['str12']  = 'true sentence';
$conf['str13']  = 'truesfdf';
$conf['str14']  = "true";
$conf['str15']  = "truesfdsf";
