Quote:
Originally Posted by Chompy
getstringkeys() can't but used directly on an object (obj.getstringkeys())
Use it inside a with() scope.
|
No.
PHP Code:
temp.string_foobar = "lawl";
temp.string_lolwat = "baz";
for (temp.foo: getstringkeys("temp.string_")) {
echo(foo SPC "[" @ makevar("temp.string_" @ foo) @ "]");
}
Result:
PHP Code:
foobar [lawl]
lolwat [baz]