Questione : assegnare il valore di una proprietà dell'oggetto ad una variabile

Devo assegnare il rel= " nofollow " " del _blank " " del target= " di http://gdata.youtube.com/feeds/videos/JCpz-45pFvU/comments?client=joe%40vultdecipi.com del href= di /feeds/videos/JCpz-45pFvU/comments di http://gdata.youtube.com? client=joe%40vultdecipi.com " ad una variabile, $VideoURL, dal var_dump allegato di un oggetto. il

I del var_dump ($newEntry) pensa che dovrebbe essere:
$VideoUrl=$newEntry->_comments->_feedLink->_href;

However che non funziona.  Ottengo il seguente errore di message.
Fatal: L'eccezione “Zend_Gdata_App_InvalidArgumentException„ di Uncaught con il messaggio “_comments della proprietà non esiste in anticipo„

Thanks!
class= > " libero " 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: „] => protettivo NULLO 
	[“_statistics: „] => protettivo NULLO 
	[“_racy: „] => protettivo NULLO 
	[“_private: „] => protettivo NULLO 
	[“_rating: „] => protettivo NULLO 
	[“_comments: „] oggetto protettivo del => (Zend_Gdata_Extension_Comments)
		#213 (9) 
		{ 
			[“_rootElement: „] stringa protettiva del => (8) “commenta„ 
			[“_rel: „] => protettivo NULLO 
			[“_feedLink: „] oggetto protettivo del => (Zend_Gdata_Extension_FeedLink)
				#217 (12) 
				{ 
					[“_rootElement: „] stringa protettiva del => (8) “feedLink„ 
					[“_countHint: „] stringa protettiva del => (1) “0„ 
					[“_href: „] stringa protettiva del => (86) “http://gdata.youtube.com/feeds/videos/JCpz-45pFvU/comments?client=joe%40vultdecipi.com„
class= del

Risposta : assegnare il valore di una proprietà dell'oggetto ad una variabile

Era poco un ingannevole ma lo ho calcolato fuori.
 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 ();
Altre soluzioni  
 
programming4us programming4us