the best thing is using json. well formatted, very short code, lightweight, fast and easy to use.
for example generate your array with php, what you want to get in your obj-c code.
$arr = array("foo" => "bar", "foobar" => "barfoo");
then encode your array to a json object and echo
echo '{"myarray":'.json_encode($arr).'}';
copy the json framework to your app and just use:
NSString *resultString = [NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://foo.bar/yourfile.php"]];
NSDictionary *resultJson = [resultString JSONValue];
NSArray *resultSet = [resultJson objectForKey:@"comments"];
now you got exactly the same array in your iphone code, as in your php file.
//edit:
you can use NSURLRequest
for better performance and other cool things. check it out.