PHP——函数及变量作用域

目录

变量作用域

九九乘法口诀表


菜鸟教程:(变量作用域)https://www.runoob.com/php/php-variables.html

                  (函数)https://www.runoob.com/php/php-functions.html

                  (超级全局变量)https://www.runoob.com/php/php-superglobals.html

变量作用域

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <?php
    // 函数及作用域
    function add($num1, $num2)
    {
        return $num1 + $num2;
    }

    $sum = add(1, 3);
    echo $sum;



    // 静态作用于Static
    echo '<hr>';
    function nextnum()
    {
        static $x = 1;   // 输出结果:1 2 3 4 5
        // $x = 1;  // 如果不声明静态作用域,输出的结果都为1
        echo $x;
        $x++;
        echo '<br/>';
    }

    for ($i = 0; $i < 5; $i++) {   // 调用5次nextnum函数的结果
        nextnum();
    }

    ?>
</body>

</html>

九九乘法口诀表

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        tr,
        td {
            width: 80px;
            height: 30px;
            border: 1px solid rgb(255, 115, 0);
            color: rgb(255, 0, 21);
            text-align: center;
            font-size: 25px;
            font-weight: bold;
            background-color: rgb(166, 255, 0);
        }
    </style>
</head>

<body>
    <div style="width: 1000px;height:500px;margin:auto;">
        <table style="width: 1000px;height:500px;">
            <?php
            for ($i = 1; $i <= 9; $i++) {
                echo '<tr>';
                for ($j = 1; $j <= $i; $j++) {
                    echo '<td>' . "$j" . '*' . "$i" . '=' . $i * $j . '</td>';
                }
                echo '</tr>';
            }
            ?>
        </table>
    </div>
</body>

</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值