Hi everyone!
I'm looking for a way of taking an input variable and using it as an array - something like a var_import version of var_export.
I'm planning on writing a front-end to Pear->Benchmark->Iterate to test functions within our system. The call to iterate takes the arguments of the function to be tested as one of it's arguments, so i need a way to pass this from a form variable
$timer =& new Benchmark_Iterate;
$timer->run(1000, 'myfunc', array('arg1', 'arg2' => 'val2'));
$results = $timer->get();
Thanks in advance for any help, Adam