0
0

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学習メモ

Last updated at Posted at 2018-03-23

基本

  • <?から始まり、?>で終わり
  • 注釈: /* */ or #

変数

  • 変数の前は$を使用
  • $_123q $の後数字不可、アンダースコアおっけ!

「""」と「''」の違い

  • 文字列の結合 「"AB"."CD"」
  • 「""」的中间不能再有「""」。同様に、「''」の中にも「''」あって行けない。
  • 対策:「"」の前に「\」をつける。
       「""」の中に「''」を使う
  • 「""」中间的内容可以展开。(里面是变量的话可以输出变量的值)
  • 「''」中间的内容无法展开。即输出变量的文字列

date関数による日付・時刻表示

ループと条件分岐

for(初期値,繰り返しの条件,変化){
 繰り返し実行する処理}
----------------------------------------------
while(繰り返しを行う条件){} 
----------------------------------------------
if(){
  }
elseif(){
  }
else{
  }
----------------------------------------------
switch(変数){
case 変数1:
  
  break
case 変数2:

 break
}

###配列

$s=array("wan","hong","xiang")

$s["english"]=455  #連想配列
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?