Chapter 3 files
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
echo test();
|
||||
echo "<br><br>";
|
||||
echo test();
|
||||
|
||||
function test()
|
||||
{
|
||||
static $count = 0;
|
||||
echo $count;
|
||||
$count++;
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user