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

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