Bonjour,

Lorsque j’exécute la fonction suivante :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
foreach ($eventFeed as $event) {
echo '<pre>' . var_export($unTableau->extendedProperty, true) . '</pre>';
}
J'ai ce retour :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
array (
  0 => 
  Zend_Gdata_Extension_ExtendedProperty::__set_state(array(
     '_rootElement' => 'extendedProperty',
     '_name' => 'TOTO',
     '_value' => 'TITI',
     '_rootNamespace' => 'gd',
     '_rootNamespaceURI' => NULL,
     '_extensionElements' => 
    array (
    ),
     '_extensionAttributes' => 
    array (
    ),
     '_text' => NULL,
     '_namespaces' => 
    array (
      'atom' => 
      array (
        1 => 
        array (
          0 => 'http://www.w3.org/2005/Atom',
        ),
      ),
      'app' => 
      array (
        1 => 
        array (
          0 => 'http://purl.org/atom/app#',
        ),
        2 => 
        array (
          0 => 'http://www.w3.org/2007/app',
        ),
      ),
      'gd' => 
      array (
        1 => 
        array (
          0 => 'http://schemas.google.com/g/2005',
        ),
      ),
      'openSearch' => 
      array (
        1 => 
        array (
          0 => 'http://a9.com/-/spec/opensearchrss/1.0/',
        ),
        2 => 
        array (
          0 => 'http://a9.com/-/spec/opensearch/1.1/',
        ),
      ),
      'rss' => 
      array (
        1 => 
        array (
          0 => 'http://blogs.law.harvard.edu/tech/rss',
        ),
      ),
    ),
  )),
)
Je souhaite afficher simplement TOTO et TITI, pouvez-vous m'aider ?

Merci