Ver Mensaje Individual
  #4 (permalink)  
Antiguo 17/04/2008, 11:59
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: imprimir los valores de este array

Mmmm muy raro, acabo de probar este script y funciona correctamente:
Código PHP:
<?php
$array 
= array(
     
"ResultSet" => array(
               
"xmlns:xsi" => "http://www.w3.org/ ",
               
"xmlns" => "urn:yatyu:cas",
               
"xsi:schemaLocation" => "urn:yahoo:cate http://web.com",
               
"Result" => array(
                          
=> "adsense",
                          
=> "google"
                
)
     )
);

foreach(
$array["ResultSet"]["Result"] as $item)
{
  print 
"$item<br />" ;
}  

print_r$array );
?>
Saludos.