summaryrefslogtreecommitdiff
path: root/tests/test_foreach/code.php
blob: 380ee699635782152b3cf81ca7308fe8fd90893d (plain)
1
2
3
4
5
6
7
8
9
<?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)
	);
}