Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/05/2010, 07:05
Avatar de abimaelrc
abimaelrc
Colaborador
 
Fecha de Ingreso: mayo-2009
Ubicación: En el planeta de Puerto Rico
Mensajes: 14.734
Antigüedad: 15 años, 7 meses
Puntos: 1517
Respuesta: Array asociativo con un "1" como string en un índice

Yo trate esto y funcionó
Código PHP:
Ver original
  1. <?php
  2. $a = array(
  3.     'recsonpage' => '1',
  4.      'recsindb' => '1',
  5.      '1' => array
  6.                (
  7.                      'thawtecertstat' => 'NA',
  8.                      'websiteid' => '17187602',
  9.                      'domainstat' => 'Processing'
  10.                 )
  11. );
  12. echo $a['1']['websiteid'];
y también de esta forma y funcionó
Código PHP:
Ver original
  1. <?php
  2. echo $a[1]['websiteid'];
__________________
Verifica antes de preguntar.
Los verdaderos amigos se hieren con la verdad, para no perderlos con la mentira. - Eugenio Maria de Hostos