Re: Fwd: Array + php

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



2013/12/13 El Ale... <alexissaucedo@xxxxxxxxx>

> Gente una consulta bastante off topic. Quiero meter un array en una clase y
> no se como hacerlo se me ocurrio algo asi:
>
>  <?
>         class Listado_Completo
>         {
>             protected $datosArray =array(0=> array( "juan", "perez",
> "2352562"),
>                 1=>array("Marina", "Zafon", "32568952"),
>                 2=> array("fulano", "de tal", "32149856");
>
>
>            public function Get_Listado_Completo(){
>                return $this->datosArray;
>            }
>
>
>             }
> ?>
>
> Pero no puedo llamar a ninguno, alguien sabe como hacerlo?
>

The parse error tells you the line.  You are missing a closing ) for your
array definition.  Fix that and all works.  But might also need a full
<?php instead of just <?.

class Listado_Completo
        {
            protected $datosArray =array(0=> array( "juan", "perez",
"2352562"),
                1=>array("Marina", "Zafon", "32568952"),
                2=> array("fulano", "de tal", "32149856"));


           public function Get_Listado_Completo(){
               return $this->datosArray;
           }


            }

$o = new Listado_Completo;
print_r( $o->Get_Listado_Completo());

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux