summaryrefslogtreecommitdiff
path: root/tests/func/002.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/func/002.phpt')
-rw-r--r--tests/func/002.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/func/002.phpt b/tests/func/002.phpt
index cb35f92043..4319715e08 100644
--- a/tests/func/002.phpt
+++ b/tests/func/002.phpt
@@ -1,14 +1,14 @@
--TEST--
Static variables in functions
--FILE--
-<?php
+<?php
function blah()
{
static $hey=0,$yo=0;
echo "hey=".$hey++.", ",$yo--."\n";
}
-
+
blah();
blah();
blah();