看看下面的實例:
複製代碼 代碼如下:
function Test()
{
$w3sky = 0;
echo $w3sky;
$w3sky++;
}
?>
複製程式碼 程式碼如下:
function Test()
{
static $w3sky = 0;
echo $w3sky;
$w3sky;
}
?>
複製程式碼 程式碼如下:
function Test()
{
static $count = 0;
$count++;
echo $count;
if ($count Test();
}
$count--;
}
?>
複製程式碼 程式碼如下:
function foo() {
static $int = 0;// correct
static $int = 1+2; // wrong (as it is an expression)
static $int = sqrt(121); // wrong ( as it is an expression too)
$int++;
echo $int;
}
?>
以上就介紹了st patrick day php中static靜態變數的使用方法詳解,包括了st patrick day方面的內容,希望對PHP教程有興趣的朋友有所幫助。