Well, it seems to be working for me.
Here is the array I get back from calling get_item_tags()
PHP Code:
Array
(
[0] => Array
(
[data] =>
[attribs] => Array
(
[] => Array
(
[url] => http://www.ladepeche.fr/content/photo/biz/2010/09/14/201009142210_b100.jpg
[type] => image/jpeg
[length] =>
[title] => Yoann Barbas (à gauche) lors du départ de la 5e étape du Tour de l'avenir, Vals-les-Bains-Loriol-sur-Drôme. À droite, le maillot jaune, Jannick Eijssen, vainqueur de la Ronde de l'isard 2010/DDM, Angel Cavicchiolo.
[provider] => DDM
[creator] =>
)
)
[xml_base] =>
[xml_base_explicit] =>
[xml_lang] =>
)
)
Unfortunately I do not know enough about PHP to access the [URL] data contained in the array! 
The following does not work... what am I doing wrong?
PHP Code:
$file = $media_content[0]['attribs']['']['url'];
echo $file;
I'll have a look at the PHP manual and see if I can figure this out.
Bookmarks