Created
February 5, 2021 17:40
-
-
Save dilakv/e4619f2f626cfd0fed8d2becd4760107 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Curso - PHP - Funciones Arrays</title> | |
</head> | |
<body> | |
<?php | |
# Variable | |
# Funciones Array | |
$array = []; | |
$array[] = 90; | |
$array[] = 100; | |
$array[] = 66; | |
$array[] = 42; //push | |
array_push($array, 999); | |
array_unshift($array, 888); | |
$ultimo_valor = array_pop($array); | |
// var_dump($array); | |
$primer_valor = array_shift($array); | |
// echo $ultimo_valor; | |
// var_dump($array); | |
// echo $primer_valor; | |
var_dump($array); | |
?> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment