1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[PHP]学習

Posted at
1 / 2

PHP学習

概要

PHPは、サーバーサイドで動作する。
PHPの記述は

変数

$+変数名
例)
$VALUE

配列

$VALUE = array(要素1, 要素2・・・);
例)
$VALUE = array('moji',1,2);
$VALUE[0] ←mojiが格納
$VALUE[1] ←1が格納

連想配列

$VALUE = array( 'key1' 3 ,
'key2' 4
);
$VALUE['key1']←3が格納

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?