Ver Mensaje Individual
  #3 (permalink)  
Antiguo 20/05/2010, 07:11
Avatar de cluster28
cluster28
 
Fecha de Ingreso: enero-2008
Ubicación: Donostia - San Sebastián
Mensajes: 756
Antigüedad: 17 años
Puntos: 32
Respuesta: Array asociativo con un "1" como string en un índice

Cita:
Iniciado por abimaelrc Ver Mensaje
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'];
Si declaras el array a "mano" funciona OK. Porque el indice '1' lo guarda como integer. Pero yo recibo el array con el '1' como string (no se por qué) pero como string no funciona.