PHPサンプル 変数の作成、出力、型チャック
サンプルコード実行
文字列型変数
文字列
$string は文字列型です。
整数型変数
100
$integer は整数型です。
浮動小数点型変数
1.1414
$float は浮動小数点型です。
論理型変数
1
$boolean は論理型です。
配列型変数
array(3) {
[0]=>
int(1)
[1]=>
int(2)
[2]=>
int(3)
}
$array は配列型です。
オブジェクト型変数
メンバ変数
Hello World!
object(SomeClass)#1 (1) {
["sName"]=>
string(15) "メンバ変数"
}
$object はオブジェクト型です。
NULL型変数
$null はNULL型です。