What is a static variable within a function?
Thus if you wanted to count how many times a function was called, you would declare the variable as a static variable with the 'static' keyword like this:
<?php
function nothing() { static $callme = "1"; echo "I have $callme things to declare\n"; $callme++; }
for($i =0; $i < 10; $i++) { nothing(); }
?>
Prints this:
I have 1 things to declare
I have 2 things to declare
I have 3 things to declare
I have 4 things to declare
I have 5 things to declare
I have 6 things to declare
I have 7 things to declare
I have 8 things to declare
I have 9 things to declare
I have 10 things to declare
If you remove the keyword 'static' then you get this instead:
I have 1 things to declare
I have 1 things to declare
I have 1 things to declare
I have 1 things to declare
I have 1 things to declare
I have 1 things to declare
I have 1 things to declare
I have 1 things to declare
I have 1 things to declare
I have 1 things to declare
Comment on this Question and Answer >>>
ASK A QUESTION
More functions PHP Questions
How can I access information sent through $_GET on a form?how can we display a particular data from database by creating a function
how can i get the data by using get(),post()methods?
WHAT IS THE CORRECT WAY TO OPEN THE FILE "time.text" AS READABLE?
