Here is the result of var_dump($my_var["id"]) on the object I'm having issues with:
array(1) { ["$t"]=> string(38) "tag:youtube.com,2008:video:PFtBzEqYOhc" }
I want to access the string(38) part of that associative array, but when I type:
echo $my_var["id"]["$t"]
I get nothing. What's the problem?