Using the static Statement to Remember the Value of a Variable Between Function Calls : Static : Language Basics PHP Source Code


PHP Source Code » Language Basics » Static »

 

Using the static Statement to Remember the Value of a Variable Between Function Calls



<html>
<head>
<title>Using the static Statement to Remember the Value of a Variable Between Function Calls</title>
</head>
<body>
<?php
function aFunction$txt ) {
     static $numCalls = 0;
     $numCalls++;
     print "<h1>$numCalls. $txt</h1>";
}

aFunction("A");
print("static called<p>");

aFunction("B");
print("called again<p>");
?>
 </body>
</html>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Language Basics
» Static