Please enable JavaScript.
Coggle requires JavaScript to display documents.
PHP (基礎知識 (出力 (echo (HTMLのタグも入る ("<br>"), $test, ("…
PHP
基礎知識
-
定数
-
-
-
関数定義,if,for,tryブロックの中では、定義できない
-
-
-
-
-
関数
-
-
ユーザ定義関数
-
補足知識
-
-
function 関数名($引数1,$引数2=2){
-
引数の数がわからないとき
function 関数名($引数1,...$引数){
引数の型の指定
function 関数名(int $引数1,$引数){
function 関数名(string $引数1,$引数){
返り値の指定
function 関数名($引数1,$引数):int{
-
-
-