Cuestión : asignar el valor de una característica del objeto a una variable

¿Necesito asignar el rel= " nofollow " del " _blank " del target= de " http://gdata.youtube.com/feeds/videos/JCpz-45pFvU/comments?client=joe%40vultdecipi.com " del href= del el /feeds/videos/JCpz-45pFvU/comments de http://gdata.youtube.com? client=joe%40vultdecipi.com " a una variable, $VideoURL, del var_dump atado de un objeto. el

I del var_dump ($newEntry) piensa que debe ser:
$VideoUrl=$newEntry->_comments->_feedLink->_href;

However que no trabaja.  Consigo el error siguiente de message.
Fatal: ¡La excepción “Zend_Gdata_App_InvalidArgumentException” de Uncaught con el mensaje “_comments de la característica no existe” el

Thanks por adelantado!
class= > " claro " del
> del " codeSnippet " del class= del
class= " lineNumbers " del
class= del
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
>object notpretty " del class= " del id= " codeSnippet745462 del
 (29) “Zend_Gdata_YouTube_VideoEntry” 
	[“_noEmbed: ”] => protegido NULO 
	[“_statistics: ”] => protegido NULO 
	[“_racy: ”] => protegido NULO 
	[“_private: ”] => protegido NULO 
	[“_rating: ”] => protegido NULO 
	[“_comments: ”] objeto protegido del => (Zend_Gdata_Extension_Comments)
		#213 (9) 
		{ 
			[“_rootElement: ”] secuencia protegida del => (8) “comenta” 
			[“_rel: ”] => protegido NULO 
			[“_feedLink: ”] objeto protegido del => (Zend_Gdata_Extension_FeedLink)
				#217 (12) 
				{ 
					[“_rootElement: ”] secuencia protegida del => (8) “feedLink” 
					[“_countHint: ”] secuencia protegida del => (1) “0” 
					[“_href: ”] secuencia protegida del => (86) “http://gdata.youtube.com/feeds/videos/JCpz-45pFvU/comments?client=joe%40vultdecipi.com”
class= del

Respuesta : asignar el valor de una característica del objeto a una variable

Era un poco difícil pero lo imaginé.
 ob_start ();
 var_dump ($newEntry);                
 $newEntryDump = ob_get_clean ();
$newEntryDumpStart = strpos ($newEntryDump, 'http://gdata.youtube.com/feeds/videos/')+38;
$error [“videoid”] = substr ($newEntryDump, $newEntryDumpStart, 11);
ob_end_flush ();
Otras soluciones  
 
programming4us programming4us