Quote:
Originally Posted by DustyPorViva
getstringkeys() will get the variables that start with whatever parameter you provide. getdynamicvarnames() simply gets a list of all dynamic variables.
|
Oh, okay. I would have gone like this:
PHP Code:
temp.x = blah.getdynamicvarnames();
for ( temp.foo : temp.x )
{
if ( temp.foo.starts( "LOL" ) )
{
//whatev
}
}