summaryrefslogtreecommitdiff
path: root/tests/test_foreach/code.php
blob: 60ad311d21f32f62669089cee4ebc6c8acacb453 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

function test_func($ste)
{
    $ste->vars["foo"] = array(
        "a" => array("a" => 100, "b" => 200),
        "b" => array("a" => 1, "b" => 2),
        "c" => array("a" => 42, "b" => 1337)
    );
}