[PHP函数]②--函数参数

创建3行2列的表格

";
    for ($i = 1; $i <= 3; $i++) {
        $table .= "";
        for ($j = 1; $j <= 2; $j++) {
            $table .= "x";
        }
        $table .= "";
    }

    $table .= "";
    return $table;
}

echo createTable();

?>
[PHP函数]②--函数参数_第1张图片
Paste_Image.png
[PHP函数]②--函数参数_第2张图片
Paste_Image.png
[PHP函数]②--函数参数_第3张图片
Paste_Image.png
";
    for ($i = 1; $i <= $rows; $i++) {
        $table .= "";
        for ($j = 1; $j <= $cols; $j++) {
            $table .= "{$content}";
        }
        $table .= "";
    }

    $table .= "";
    return $table;
}

echo createTable();

?>
Paste_Image.png

必选参数一定在可选参数之前

";
    for ($i = 1; $i <= $rows; $i++) {
        $table .= "";
        for ($j = 1; $j <= $cols; $j++) {
            $table .= "{$content}";
        }
        $table .= "";
    }

    $table .= "";
    return $table;
}

echo createTable(2, 3);


?>
Paste_Image.png

你可能感兴趣的:([PHP函数]②--函数参数)