php の static キーワードの機能は次のとおりです: 1. 関数内に配置して変数を変更すると、変数の値は関数の実行後も保存されます; 2. 静的キーワードをクラスに配置して、属性またはメソッドを変更します。変更がクラス属性の場合、値は保持されます。3. クラスのメソッド内の変数を変更します。4. グローバル スコープ内の変数を変更します。
静的キーワードの機能は次のとおりです:
1. 変数を変更するには、これを関数内に置きます。
##2. 属性またはメソッドを変更するにはクラスに配置します;
3. 変数を変更するにはクラス メソッドに配置します。
4. グローバル スコープで変数を変更します。
キーワードによって表されるさまざまな意味は次のとおりです。関数が実行されても、変数値はまだ保存されています以下に示すように:<?php function testStatic() { static $val = 1; echo $val; $val++; } testStatic(); //output 1 testStatic(); //output 2 testStatic(); //output 3 ?>
<?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 ?>
<?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' ?>
<?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 ?>
php 中国語 Web サイト
にアクセスしてください。以上がPHPの静的キーワードの機能は何ですかの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。