Review Note

Last Update: 09/09/2024 04:04 PM

Current Deck: 1Universidad::materia::BDD Bases de datos

Published

Currently Published Content


★ Title
PHP listas, cambiar elementos
☆ Subtitle
pop, añadir, eliminar.
☆ Syntax (inline code)
★ Sample (code block or image)
★ Key point (code block or image)
<?php
$lista = ['a', 'b', 'c', 'd', 'e'];

$lista[] = 'final';                     // Nuevo elemento
array_push($lista, "popeado");
$ultimo_elemento = array_pop($lista);   // Método pop
unset($lista[2]);                       // Eliminar

echo "Pop: ", $ultimo_elemento, "\n";
print_r($lista);
?>
★ Key point notes
✎ Other notes
✎ Markdown

No published tags.

Pending Suggestions


No pending suggestions for this note.