php中static關鍵字的作用是什麼

2020-07-16 10:06:24

php中static關鍵字的作用是:1、放在函數內部修飾變數,函數執行完後變數值仍然儲存;2、放在類中修飾屬性或方法,如果修飾的是類的屬性,則保留值;3、放在類的方法中修飾變數;4、修飾全域性作用域的變數。

static關鍵字的作用如下:

1、放在函數內部修飾變數;

2、放在類裡修飾屬性或方法;

3、放在類的方法裡修飾變數;

4、修飾全域性作用域的變數;

關鍵字所表示的不同含義如下:

1、在函數執行完後,變數值仍然儲存

如下所示:

<?php
function testStatic() {
    static $val = 1;
    echo $val;
    $val++;
}
testStatic();   //output 1
testStatic();   //output 2
testStatic();   //output 3
?>

2、修飾屬性或方法,可以通過類名存取,如果是修飾的是類的屬性,保留值

如下所示:

<?php
class Person {
    static $id = 0;
 
    function __construct() {
        self::$id++;
    }
 
    static function getId() {
        return self::$id;
    }
}
echo Person::$id;   //output 0
echo "<br/>";
 
$p1=new Person();
$p2=new Person();
$p3=new Person();
 
echo Person::$id;   //output 3
?>

3、修飾類的方法裡面的變數

如下所示:

<?php
class Person {
    static function tellAge() {
        static $age = 0;
        $age++;
        echo "The age is: $age
";
    }
}
echo Person::tellAge(); //output 'The age is: 1'
echo Person::tellAge(); //output 'The age is: 2'
echo Person::tellAge(); //output 'The age is: 3'
echo Person::tellAge(); //output 'The age is: 4'
?>

4、修飾全域性作用域的變數,沒有實際意義

如下所示:

<?php
static $name = 1;
$name++;
echo $name;
?>
另外:考慮到PHP變數作用域

<?php
include 'ChromePhp.php';
 
$age=0;
$age++;
 
function test1() {
    static $age = 100;
    $age++;
    ChromePhp::log($age);  //output 101
}
 
function test2() {
    static $age = 1000;
    $age++;
    ChromePhp::log($age); //output 1001
}
 
test1();
test2();
ChromePhp::log($age); //outpuut 1
?>

可以看出,這3個變數是不相互影響的。另外,PHP裡面只有全域性作用域和函數作用域,沒有塊作用域。

如果您想學習更多相關知識,歡迎存取TW511.COM

以上就是php中static關鍵字的作用是什麼的詳細內容,更多請關注TW511.COM其它相關文章!