Array en PHP
Marcos
Posted on October 15, 2021
Declarar un array vacío
//Sintaxis con array()
$lista_de_series=array();
//Sintaxis short array valida a partir de PHP 5.4
$lista_de_series=[];
Declarar un array con elementos
//Sintaxis con array()
$lista_de_series=array('El juego del calamar','Cobra kay','Love, Death and Robots','Sweet Tooth');
//Sintaxis short array
$lista_de_series=['El juego del calamar','Cobra kay','Love, Death and Robots','Sweet Tooth'];
Acceder a un elemento de un array simple
$indice=3;
echo $lista_de_series[$indice];
Declarar un array asociativo con elementos
//Sintaxis con array()
$jugador=array('nombre'=>'Lionel',
'apellido'=>'Messi',
'nacionalidad'=>'Argentina',
'edad'=>34);
//Sintaxis short array
$jugador=['nombre'=>'Lionel',
'apellido'=>'Messi',
'nacionalidad'=>'Argentina',
'edad'=>34];
Acceder a un elemento de un array asociativo con claves
//Sintaxis con array()
echo $jugador['nombre'];
Acceder a un elemento de un array asociativo con claves
//Sintaxis con array()
echo $jugador['nombre'];
Agregar elementos a un array
PHP nos proporciona la funcion array_push() para agregar elementos a un array
Sintaxis: array_push($array, $elemento);
También es posible agregar mas de un elemento
array_push($array, $elemento1,$elemento2,$elemento3,$elemento4);
$lista_de_series=array('El juego del calamar','Cobra kay','Love, Death and Robots','Sweet Tooth');
array_push($lista_de_series,'La casa de papel');
array_push($lista_de_series,'Sweet Home','De yakuza a amo de casa');
FIN
DEL
POST
💖 💪 🙅 🚩
Marcos
Posted on October 15, 2021
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.
Related
webdev Understanding HTTP, Cookies, Email Protocols, and DNS: A Guide to Key Internet Technologies
November 30, 2024