mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2026-02-05 22:55:14 +01:00
Initiale Version
This commit is contained in:
13
Kapitel_2/Lektion_10/1_arrays_definieren.php
Normal file
13
Kapitel_2/Lektion_10/1_arrays_definieren.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
$liste = array(1, 2, 3);
|
||||
var_dump($liste);
|
||||
|
||||
$liste = [1, 2, 3];
|
||||
var_dump($liste);
|
||||
|
||||
$liste = ['a', 'b', 'xy'];
|
||||
var_dump($liste);
|
||||
|
||||
$liste = ['a', 'b', 'xy', 123, 1.23];
|
||||
var_dump($liste);
|
||||
Reference in New Issue
Block a user