1
我在seperate php file
上有一個php函數,我使用jquery ajax call
來調用此函數from another php file
。 PHP函數只是將其靜態值增加1,但在看到輸出時不會增加。靜態變量不會像我想的那樣行爲。靜態變量不會在PHP中增加
這是什麼原因?
由於提前,
簡單的函數:
function IncrementByOne()
{
static $count = 0;
$count++;
echo $count;
}