Queries and SolutionsCategory: PHPwhat is the static variable in php?
bestonetechnologies Staff asked 8 years ago

what is the static variable in php?

0 Answers
bestonetechnologies Staff answered 8 years ago

A static variable is that which will not lose its value and will still hold value when the function be called again.
Example:
<?php
function counter() {
  STATIC $count = 0;
  $count++;
  print $count;
  print “<br />”;
}
counter();
counter();
counter();
?>
<strong>Output:</strong>
1
2
3

Your Answer

4 + 5 =