summaryrefslogtreecommitdiff
path: root/tests/test_array/code.php
blob: b524c15db0cbdab86bd43652bd1b16ce853ba061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

function test_func($ste)
{
    $ste->vars["foo"] = array(
        "a" => array(
            "blabla" => "OK"
        ),
        "b" => "bla"
    );
    $ste->vars["bar"] = array(
        "baz" => "a"
    );
}