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


PHP Source Code » Language Basics » Global »

 

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



<html>
<head>
<title>Using the global Statement to Remember the Value of a Variable Between Function Calls</title>
</head>
<body>
<?php
$num_of_calls = 0;
function andAnotherThing$txt ){
    global $num_of_calls;

    $num_of_calls++;
    print "<h1>$num_of_calls. $txt</h1>";
}
andAnotherThing("A");
print("Called<p>");
andAnotherThing("B");
print("Called again<p>");
 ?>
</body>
</html>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Language Basics
» Global