LoginSignup
0
0

More than 1 year has passed since last update.

【PHP】基本文法メモ 配列

Posted at

基本的なPHPの文法についてメモっておく。

対話モードで色々な文法を試す

$ php -a

PHP >

対話モードが立ち上がる。

配列

PHP > $animals = ["dog", "wani", "gorira"];
php > echo $animals;
PHP Notice:  Array to string conversion in php shell code on line 1
Array
php > echo $animals[1];
wani

こんな感じで配列を定義することができる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0