summaryrefslogtreecommitdiff
path: root/tests/test_array/code.php
blob: 58601e21fed266c1fae28b838d44c479e1317406 (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"
	);
}